SQuirrel SQL クライアント 3.6 を使用して hbase テーブルを作成しました。以下は私が試したクエリです-
create table test (mykey integer not null primary key, mycolumn varchar);
upsert into test values (1,'Hello');
upsert into test values (2,'World!');
現在、SQuirrel SQL クライアント 3.6 を使用してビューを作成しようとしています。以下は私が試したクエリです-
create view "TEST" (ID BIGINT NOT NULL PRIMARY KEY, "TEST".mycolumn varchar);
このビュー作成クエリは以下のエラーを返します-
Error: ERROR 505 (42000): Table is read only.
SQLState: 42000
ErrorCode: 0
何が問題なのか提案してください..