Richárd Antal created PHOENIX-7034:
--------------------------------------
Summary: Disallow mapped view creation when the schema does not
exists
Key: PHOENIX-7034
URL: https://issues.apache.org/jira/browse/PHOENIX-7034
Project: Phoenix
Issue Type: Task
Affects Versions: 5.1.3
Reporter: Richárd Antal
Currently it is possible to create a mapped view on an HBase table even if the
schema is not created in phoenix.
We should throw a schema does not exists error similarly to the table creation.
Steps to repro:
hbase shell
create_namespace 'T'
create 'T:T1’, \{NAME => 'f1', VERSIONS => 5}
put 'T:T1', '1', 'f1:lastname', 'Foo'
phoenix-sqlline
CREATE VIEW "T:T1" ( pk VARCHAR PRIMARY KEY, "f1"."lastname" VARCHAR );
--
This message was sent by Atlassian Jira
(v8.20.10#820010)