mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 11:22:12 +00:00
7 lines
253 B
SQL
7 lines
253 B
SQL
SET enable_analyzer = 1;
|
|
|
|
DROP TABLE IF EXISTS table_with_materialized;
|
|
CREATE TABLE table_with_materialized (col String MATERIALIZED 'A') ENGINE = Memory;
|
|
SELECT number FROM numbers(1) AS n, table_with_materialized;
|
|
DROP TABLE table_with_materialized;
|