mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
8 lines
269 B
SQL
8 lines
269 B
SQL
DROP TABLE IF EXISTS t;
|
|
|
|
CREATE TABLE t (n UInt8) ENGINE=MergeTree ORDER BY n SAMPLE BY tuple(); -- { serverError INCORRECT_QUERY }
|
|
|
|
CREATE TABLE t (n UInt8) ENGINE=MergeTree ORDER BY tuple();
|
|
|
|
ALTER TABLE t MODIFY SAMPLE BY tuple(); -- { serverError INCORRECT_QUERY }
|