mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 07:01:59 +00:00
Test for TTL info in system.parts
This commit is contained in:
parent
2fa264d83e
commit
7e4cd8f8d4
@ -0,0 +1,2 @@
|
||||
2 2000-01-11 01:02:03 2000-02-13 04:05:06 [] [] []
|
||||
0 0000-00-00 00:00:00 0000-00-00 00:00:00 [] [] []
|
@ -0,0 +1,9 @@
|
||||
DROP TABLE IF EXISTS ttl;
|
||||
CREATE TABLE ttl (d DateTime) ENGINE = MergeTree ORDER BY tuple() TTL d + INTERVAL 10 DAY;
|
||||
SYSTEM STOP MERGES;
|
||||
INSERT INTO ttl VALUES ('2000-01-01 01:02:03'), ('2000-02-03 04:05:06');
|
||||
SELECT rows, delete_ttl_info_min, delete_ttl_info_max, move_ttl_info.expression, move_ttl_info.min, move_ttl_info.max FROM system.parts WHERE database = currentDatabase() AND table = 'ttl';
|
||||
SYSTEM START MERGES;
|
||||
OPTIMIZE TABLE ttl FINAL;
|
||||
SELECT rows, delete_ttl_info_min, delete_ttl_info_max, move_ttl_info.expression, move_ttl_info.min, move_ttl_info.max FROM system.parts WHERE database = currentDatabase() AND table = 'ttl' AND active;
|
||||
DROP TABLE ttl;
|
Loading…
Reference in New Issue
Block a user