mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 20:24:07 +00:00
Add a test
This commit is contained in:
parent
01db925bbc
commit
e817d814bf
@ -0,0 +1 @@
|
||||
1 2 2 1
|
8
tests/queries/0_stateless/03254_merge_source_parts.sql
Normal file
8
tests/queries/0_stateless/03254_merge_source_parts.sql
Normal file
@ -0,0 +1,8 @@
|
||||
DROP TABLE IF EXISTS test;
|
||||
CREATE TABLE test (x UInt8) ORDER BY x;
|
||||
INSERT INTO test VALUES (1);
|
||||
INSERT INTO test VALUES (2);
|
||||
OPTIMIZE TABLE test FINAL;
|
||||
SYSTEM FLUSH LOGS;
|
||||
SELECT ProfileEvents['Merge'], ProfileEvents['MergeSourceParts'], ProfileEvents['MergedRows'], ProfileEvents['MergedColumns'] FROM system.part_log WHERE database = currentDatabase() AND table = 'test' AND event_type = 'MergeParts';
|
||||
DROP TABLE test;
|
Loading…
Reference in New Issue
Block a user