ClickHouse/dbms/tests/queries/0_stateless/01060_shutdown_table_after_detach.sql

15 lines
327 B
MySQL
Raw Normal View History

2020-01-10 11:20:40 +00:00
CREATE TABLE IF NOT EXISTS test Engine = MergeTree ORDER BY number AS SELECT number, toString(rand()) x from numbers(10000000);
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;