mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
11 lines
508 B
SQL
11 lines
508 B
SQL
DROP TABLE IF EXISTS test;
|
|
|
|
CREATE TABLE test(a UInt8, b String EPHEMERAL) Engine=Memory();
|
|
|
|
DROP TABLE test;
|
|
|
|
CREATE TABLE test(a UInt8, b EPHEMERAL String) Engine=Memory(); -- { clientError SYNTAX_ERROR }
|
|
CREATE TABLE test(a UInt8, b EPHEMERAL 'a' String) Engine=Memory(); -- { clientError SYNTAX_ERROR }
|
|
CREATE TABLE test(a UInt8, b String EPHEMERAL test) Engine=Memory(); -- { clientError SYNTAX_ERROR }
|
|
CREATE TABLE test(a UInt8, b String EPHEMERAL 1+2) Engine=Memory(); -- { clientError SYNTAX_ERROR }
|