ClickHouse/dbms/tests/integration/test_server_initialization/clickhouse_path/metadata/default/sophisticated_default.sql
2017-06-16 19:08:24 +03:00

13 lines
222 B
SQL

ATTACH TABLE sophisticated_default
(
a UInt8 DEFAULT
(
SELECT number FROM system.numbers LIMIT 3,1
),
b UInt8 ALIAS
(
SELECT dummy+9 FROM system.one
),
c UInt8
) ENGINE = Memory