ClickHouse/tests/queries/0_stateless/00933_reserved_word.sql

10 lines
252 B
MySQL
Raw Normal View History

2021-09-12 12:35:27 +00:00
-- Tags: no-parallel
DROP TABLE IF EXISTS reserved_word_table;
CREATE TABLE reserved_word_table (`index` UInt8) ENGINE = MergeTree ORDER BY `index`;
2019-04-05 17:07:58 +00:00
DETACH TABLE reserved_word_table;
ATTACH TABLE reserved_word_table;
2019-04-05 17:07:58 +00:00
DROP TABLE reserved_word_table;