2019-04-16 14:13:13 +00:00
|
|
|
DROP TABLE IF EXISTS cast_enums;
|
|
|
|
CREATE TABLE cast_enums
|
2017-04-24 10:04:51 +00:00
|
|
|
(
|
|
|
|
type Enum8('session' = 1, 'pageview' = 2, 'click' = 3),
|
|
|
|
date Date,
|
|
|
|
id UInt64
|
|
|
|
) ENGINE = MergeTree(date, (type, date, id), 8192);
|
|
|
|
|
2019-04-16 14:13:13 +00:00
|
|
|
INSERT INTO cast_enums SELECT 'session' AS type, toDate('2017-01-01') AS date, number AS id FROM system.numbers LIMIT 2;
|
|
|
|
INSERT INTO cast_enums SELECT 2 AS type, toDate('2017-01-01') AS date, number AS id FROM system.numbers LIMIT 2;
|
2017-04-24 10:04:51 +00:00
|
|
|
|
2019-04-16 14:13:13 +00:00
|
|
|
SELECT type, date, id FROM cast_enums ORDER BY type, id;
|
2017-04-24 10:04:51 +00:00
|
|
|
|
2020-01-29 14:15:53 +00:00
|
|
|
INSERT INTO cast_enums VALUES ('wrong_value', '2017-01-02', 7); -- { clientError 36 }
|
|
|
|
|
2019-04-16 14:13:13 +00:00
|
|
|
DROP TABLE IF EXISTS cast_enums;
|