mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-26 01:22:04 +00:00
14 lines
342 B
MySQL
14 lines
342 B
MySQL
|
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;
|