mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-08 08:35:20 +00:00
be831d09f7
* [WIP] * Update skip-list * Update ci_config.json * Do not sync inserts for test * Fix more tests * Fix another test * Enable one more test * More fixed tests * More test fixes * Do not absolutize server path for now * More test fixes * Unset CLICKHOUSE_LOG_COMMENT where necessary * Remove debugging set -e * Fix more tests * Fix test reference * Fix style check
14 lines
581 B
SQL
14 lines
581 B
SQL
SET insert_distributed_sync = 1;
|
|
|
|
DROP TABLE IF EXISTS low_cardinality;
|
|
DROP TABLE IF EXISTS low_cardinality_all;
|
|
|
|
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));
|
|
|
|
INSERT INTO low_cardinality_all (d,x,s) VALUES ('2018-11-12',1,'123');
|
|
SELECT s FROM low_cardinality_all;
|
|
|
|
DROP TABLE IF EXISTS low_cardinality;
|
|
DROP TABLE IF EXISTS low_cardinality_all;
|