Added a test from aadant #4921

This commit is contained in:
Alexey Milovidov 2019-04-05 20:07:58 +03:00
parent eff767b6aa
commit f48927a1b9
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,7 @@
DROP TABLE IF EXISTS test.reserved_word_table;
CREATE TABLE test.reserved_word_table (`index` UInt8) ENGINE = MergeTree ORDER BY `index`;
DETACH TABLE test.reserved_word_table;
ATTACH TABLE test.reserved_word_table;
DROP TABLE test.reserved_word_table;