mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 16:42:05 +00:00
21 lines
476 B
SQL
21 lines
476 B
SQL
-- Tags: no-replicated-database, no-parallel
|
|
-- Tag no-replicated-database: Unsupported type of ALTER query
|
|
|
|
DROP TABLE IF EXISTS test;
|
|
CREATE TABLE test Engine = MergeTree ORDER BY number AS SELECT number, toString(rand()) x from numbers(10000000);
|
|
|
|
SELECT count() FROM test;
|
|
|
|
ALTER TABLE test DETACH PARTITION tuple();
|
|
|
|
SELECT count() FROM test;
|
|
|
|
DETACH TABLE test;
|
|
ATTACH TABLE test;
|
|
|
|
ALTER TABLE test ATTACH PARTITION tuple();
|
|
|
|
SELECT count() FROM test;
|
|
|
|
DROP TABLE test;
|