mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
10 lines
252 B
SQL
10 lines
252 B
SQL
-- Tags: no-parallel
|
|
|
|
DROP TABLE IF EXISTS reserved_word_table;
|
|
CREATE TABLE reserved_word_table (`index` UInt8) ENGINE = MergeTree ORDER BY `index`;
|
|
|
|
DETACH TABLE reserved_word_table;
|
|
ATTACH TABLE reserved_word_table;
|
|
|
|
DROP TABLE reserved_word_table;
|