mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
28 lines
989 B
SQL
28 lines
989 B
SQL
-- Tags: zookeeper, no-replicated-database, no-shared-merge-tree
|
|
-- Tag no-replicated-database: Old syntax is not allowed
|
|
-- no-shared-merge-tree: implemented replacement
|
|
|
|
DROP TABLE IF EXISTS alter_00121 SYNC;
|
|
set allow_deprecated_syntax_for_merge_tree=1;
|
|
CREATE TABLE alter_00121 (d Date, x UInt8) ENGINE = ReplicatedMergeTree('/clickhouse/tables/{database}/test/alter_00121/t1', 'r1', d, (d), 8192);
|
|
|
|
INSERT INTO alter_00121 VALUES ('2014-01-01', 1);
|
|
ALTER TABLE alter_00121 DROP COLUMN x;
|
|
|
|
DROP TABLE alter_00121 SYNC;
|
|
|
|
CREATE TABLE alter_00121 (d Date) ENGINE = ReplicatedMergeTree('/clickhouse/tables/{database}/test/alter_00121/t2', 'r1', d, (d), 8192);
|
|
|
|
INSERT INTO alter_00121 VALUES ('2014-01-01');
|
|
SELECT * FROM alter_00121 ORDER BY d;
|
|
|
|
ALTER TABLE alter_00121 ADD COLUMN x UInt8;
|
|
|
|
INSERT INTO alter_00121 VALUES ('2014-02-01', 1);
|
|
SELECT * FROM alter_00121 ORDER BY d;
|
|
|
|
ALTER TABLE alter_00121 DROP COLUMN x;
|
|
SELECT * FROM alter_00121 ORDER BY d;
|
|
|
|
DROP TABLE alter_00121 SYNC;
|