mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-01 03:52:15 +00:00
Use unsigned integer for column
This commit is contained in:
parent
57e771226c
commit
5adf447758
@ -13,7 +13,7 @@ SELECT * FROM remote('127.0.0.{2|3|4}', currentDatabase(), t) SETTINGS parallel_
|
|||||||
|
|
||||||
DROP TABLE t;
|
DROP TABLE t;
|
||||||
|
|
||||||
CREATE TABLE t (x String, y Int32) ENGINE = MergeTree ORDER BY cityHash64(x) SAMPLE BY cityHash64(x);
|
CREATE TABLE t (x String, y UInt32) ENGINE = MergeTree ORDER BY cityHash64(x) SAMPLE BY cityHash64(x);
|
||||||
INSERT INTO t SELECT toString(number), number FROM numbers(1000);
|
INSERT INTO t SELECT toString(number), number FROM numbers(1000);
|
||||||
|
|
||||||
SET max_parallel_replicas = 1;
|
SET max_parallel_replicas = 1;
|
||||||
|
Loading…
Reference in New Issue
Block a user