mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 13:13:36 +00:00
8 lines
243 B
MySQL
8 lines
243 B
MySQL
|
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 }
|