mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-08 15:31:57 +00:00
34 lines
1.1 KiB
SQL
34 lines
1.1 KiB
SQL
DROP TABLE IF EXISTS t;
|
|
|
|
CREATE TABLE t (uid Int16, name String, age Nullable(Int8), i Int16, j Int16, projection p1 (select name, age, uniq(i), count(j) group by name, age)) ENGINE=MergeTree order by uid settings index_granularity = 1;
|
|
|
|
INSERT INTO t VALUES (1231, 'John', 11, 1, 1), (6666, 'Ksenia', 1, 2, 2), (8888, 'Alice', 1, 3, 3), (6667, 'Ksenia', null, 4, 4);
|
|
|
|
-- Cannot ALTER, which breaks key column of projection.
|
|
ALTER TABLE t MODIFY COLUMN age Nullable(Int32); -- { serverError ALTER_OF_COLUMN_IS_FORBIDDEN }
|
|
|
|
-- Cannot ALTER, uniq(Int16) is not compatible with uniq(Int32).
|
|
ALTER TABLE t MODIFY COLUMN i Int32; -- { serverError CANNOT_CONVERT_TYPE }
|
|
|
|
SYSTEM STOP MERGES t;
|
|
|
|
SET alter_sync = 0;
|
|
|
|
-- Can ALTER, count(Int16) is compatible with count(Int32).
|
|
ALTER TABLE t MODIFY COLUMN j Int32;
|
|
|
|
-- Projection query works without mutation applied.
|
|
SELECT count(j) FROM t GROUP BY name, age;
|
|
|
|
SYSTEM START MERGES t;
|
|
|
|
SET alter_sync = 1;
|
|
|
|
-- Another ALTER to wait for.
|
|
ALTER TABLE t MODIFY COLUMN j Int64 SETTINGS mutations_sync = 2;
|
|
|
|
-- Projection query works with mutation applied.
|
|
SELECT count(j) FROM t GROUP BY name, age;
|
|
|
|
DROP TABLE t;
|