update test

This commit is contained in:
feng lv 2021-05-03 16:19:48 +00:00
parent 39f68bf5ff
commit 2347a1f6f3
2 changed files with 3 additions and 0 deletions

View File

@ -1,3 +1,4 @@
t1 this is a temtorary table
t2 this is a MergeTree table
t3 this is a Log table
CREATE TABLE default.t1\n(\n `n` Int8\n)\nENGINE = Memory\nCOMMENT \'this is a temtorary table\'

View File

@ -30,6 +30,8 @@ SELECT
FROM system.tables
WHERE name IN ('t1', 't2', 't3') order by name;
SHOW CREATE TABLE t1;
DROP TABLE t1;
DROP TABLE t2;
DROP TABLE t3;