ClickHouse/tests/queries/0_stateless/00709_virtual_column_partition_id.sql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
343 B
MySQL
Raw Normal View History

DROP TABLE IF EXISTS partition_id;
2018-09-10 10:20:21 +00:00
2022-06-23 10:58:34 +00:00
set allow_deprecated_syntax_for_merge_tree=1;
CREATE TABLE IF NOT EXISTS partition_id (d Date DEFAULT '2000-01-01', x UInt64) ENGINE = MergeTree(d, x, 5);
2018-09-10 10:20:21 +00:00
INSERT INTO partition_id VALUES (100, 1), (200, 2), (300, 3);
2018-09-10 10:20:21 +00:00
SELECT _partition_id FROM partition_id ORDER BY x;
2018-09-10 10:20:21 +00:00
DROP TABLE IF EXISTS partition_id;
2018-09-10 10:20:21 +00:00