mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 23:31:24 +00:00
97f2a2213e
* Move some code outside dbms/src folder * Fix paths
15 lines
634 B
SQL
15 lines
634 B
SQL
DROP TABLE IF EXISTS new_table_test;
|
|
DROP TABLE IF EXISTS check_table_test;
|
|
|
|
CREATE TABLE new_table_test(name String) ENGINE = MergeTree ORDER BY name;
|
|
INSERT INTO new_table_test VALUES ('test');
|
|
CREATE TABLE check_table_test(value1 UInt64, value2 UInt64) ENGINE = MergeTree ORDER BY tuple();
|
|
INSERT INTO check_table_test (value1) SELECT value FROM system.events WHERE event = 'Merge';
|
|
OPTIMIZE TABLE new_table_test FINAL;
|
|
INSERT INTO check_table_test (value2) SELECT value FROM system.events WHERE event = 'Merge';
|
|
SELECT count() FROM check_table_test WHERE value2 > value1;
|
|
|
|
|
|
DROP TABLE new_table_test;
|
|
DROP TABLE check_table_test;
|