ClickHouse/tests/queries/0_stateless/00933_reserved_word.sql
2023-04-20 13:15:00 +02:00

8 lines
230 B
SQL

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;