mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
14 lines
342 B
SQL
14 lines
342 B
SQL
DROP TABLE IF EXISTS most_ordinary_mt;
|
|
|
|
CREATE TABLE most_ordinary_mt
|
|
(
|
|
Key UInt64
|
|
)
|
|
ENGINE = MergeTree()
|
|
ORDER BY tuple();
|
|
|
|
ALTER TABLE most_ordinary_mt RESET SETTING ttl; --{serverError 36}
|
|
ALTER TABLE most_ordinary_mt RESET SETTING allow_remote_fs_zero_copy_replication, xxx; --{serverError 36}
|
|
|
|
DROP TABLE IF EXISTS most_ordinary_mt;
|