Alexander Belyak created IGNITE-19816:
-----------------------------------------
Summary: View support
Key: IGNITE-19816
URL: https://issues.apache.org/jira/browse/IGNITE-19816
Project: Ignite
Issue Type: Task
Components: sql
Affects Versions: 3.0
Reporter: Alexander Belyak
Create view not supported:
{noformat}
drop table if exists vbase;
create table vbase(key int primary key, val int) ;
create view v1(k,v) as
select key, val from vbase; {noformat}
returns error
{noformat}
[Code: 0, SQL State: 50000] Exception while executing query [query=create view
v1(k,v) as
select key, val from vbase]. Error message:Failed to parse query: Encountered
"" at line 1, column 1.
Was expecting one of:
{noformat}
and there is nothing about view in the documentation
https://ignite.apache.org/docs/3.0.0-beta/sql-reference/ddl
--
This message was sent by Atlassian Jira
(v8.20.10#820010)