mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
b5d69d599e
add tests fix fix fix
8 lines
243 B
SQL
8 lines
243 B
SQL
DROP TABLE IF EXISTS t;
|
|
|
|
CREATE TABLE t (n UInt8) ENGINE=MergeTree ORDER BY n SAMPLE BY tuple(); -- { serverError 80 }
|
|
|
|
CREATE TABLE t (n UInt8) ENGINE=MergeTree ORDER BY tuple();
|
|
|
|
ALTER TABLE t MODIFY SAMPLE BY tuple(); -- { serverError 80 }
|