mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
15 lines
321 B
SQL
15 lines
321 B
SQL
CREATE TABLE IF NOT EXISTS sample_incorrect
|
|
(`x` UUID)
|
|
ENGINE = MergeTree
|
|
ORDER BY tuple(x)
|
|
SAMPLE BY x; -- { serverError 59 }
|
|
|
|
DROP TABLE IF EXISTS sample_correct;
|
|
CREATE TABLE IF NOT EXISTS sample_correct
|
|
(`x` String)
|
|
ENGINE = MergeTree
|
|
ORDER BY tuple(sipHash64(x))
|
|
SAMPLE BY sipHash64(x);
|
|
|
|
DROP TABLE sample_correct;
|