mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 03:25:15 +00:00
9 lines
179 B
MySQL
9 lines
179 B
MySQL
|
set enable_debug_queries = 1;
|
||
|
|
||
|
DROP TABLE IF EXISTS test.a;
|
||
|
CREATE TABLE test.a (a UInt8, b UInt8) ENGINE MergeTree ORDER BY a;
|
||
|
|
||
|
ANALYZE SELECT * FROM test.a;
|
||
|
|
||
|
DROP TABLE test.a;
|