ClickHouse/tests/queries/0_stateless/00800_low_cardinality_distributed_insert.sql

14 lines
581 B
MySQL
Raw Normal View History

SET insert_distributed_sync = 1;
2019-06-07 15:41:24 +00:00
DROP TABLE IF EXISTS low_cardinality;
DROP TABLE IF EXISTS low_cardinality_all;
2018-12-03 13:11:26 +00:00
2019-06-07 15:41:24 +00:00
CREATE TABLE low_cardinality (d Date, x UInt32, s LowCardinality(String)) ENGINE = MergeTree(d, x, 8192);
CREATE TABLE low_cardinality_all (d Date, x UInt32, s LowCardinality(String)) ENGINE = Distributed(test_shard_localhost, currentDatabase(), low_cardinality, sipHash64(s));
2018-12-03 13:11:26 +00:00
2019-06-07 15:41:24 +00:00
INSERT INTO low_cardinality_all (d,x,s) VALUES ('2018-11-12',1,'123');
SELECT s FROM low_cardinality_all;
2018-12-03 13:11:26 +00:00
2019-06-07 15:41:24 +00:00
DROP TABLE IF EXISTS low_cardinality;
DROP TABLE IF EXISTS low_cardinality_all;