mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
6 lines
128 B
SQL
6 lines
128 B
SQL
CREATE TABLE IF NOT EXISTS empty_tiny_log(A UInt8) Engine = TinyLog;
|
|
|
|
SELECT A FROM empty_tiny_log;
|
|
|
|
DROP TABLE empty_tiny_log;
|