This commit is contained in:
flynn 2023-04-10 13:53:43 +00:00
parent 5a8d10c0e0
commit 9868dd750e
2 changed files with 6 additions and 2 deletions

View File

@ -1,2 +1,4 @@
CREATE TABLE default.t_2710_show_table\n(\n `n1` UInt32,\n `s` String\n)\nENGINE = MergeTree\nORDER BY n1\nSETTINGS index_granularity = 8192
CREATE TABLE default.t_2710_show_table\n(\n `n1` UInt32,\n `s` String\n)\nENGINE = Log
CREATE TABLE default.t_2710_show_table\n(\n `n1` UInt32,\n `s` String\n)\nENGINE = Log
CREATE TABLE default.t_2710_show_table\n(\n `n1` UInt32,\n `s` String\n)\nENGINE = Log
CREATE DATABASE t_2710_db\nENGINE = Atomic

View File

@ -1,7 +1,9 @@
DROP TABLE IF EXISTS t_2710_show_table;
CREATE TABLE t_2710_show_table(n1 UInt32, s String) engine=MergeTree order by n1 SETTINGS index_granularity = 8192;
CREATE TABLE t_2710_show_table(n1 UInt32, s String) engine=Log;
SHOW TABLE t_2710_show_table;
SHOW CREATE TABLE t_2710_show_table;
SHOW CREATE t_2710_show_table;
DROP TABLE t_2710_show_table;