2019-04-18 18:48:04 +00:00
|
|
|
DROP TABLE IF EXISTS mergetree_00712;
|
|
|
|
CREATE TABLE mergetree_00712 (x UInt8, s String) ENGINE = MergeTree ORDER BY tuple();
|
2018-09-10 15:52:50 +00:00
|
|
|
|
2019-04-18 18:48:04 +00:00
|
|
|
INSERT INTO mergetree_00712 VALUES (1, 'Hello, world!');
|
|
|
|
SELECT * FROM mergetree_00712;
|
2018-09-10 15:52:50 +00:00
|
|
|
|
2019-04-18 18:48:04 +00:00
|
|
|
ALTER TABLE mergetree_00712 ADD COLUMN y UInt8 DEFAULT 0;
|
|
|
|
INSERT INTO mergetree_00712 VALUES (2, 'Goodbye.', 3);
|
|
|
|
SELECT * FROM mergetree_00712 ORDER BY x;
|
2018-09-10 15:52:50 +00:00
|
|
|
|
2019-04-18 18:48:04 +00:00
|
|
|
SELECT s FROM mergetree_00712 PREWHERE x AND y ORDER BY s;
|
|
|
|
SELECT s, y FROM mergetree_00712 PREWHERE x AND y ORDER BY s;
|
2018-09-10 15:52:50 +00:00
|
|
|
|
2019-04-18 18:48:04 +00:00
|
|
|
DROP TABLE mergetree_00712;
|