mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 19:45:11 +00:00
fix
This commit is contained in:
parent
5a8d10c0e0
commit
9868dd750e
@ -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
|
||||
|
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user