ClickHouse/tests/queries/0_stateless/01415_inconsistent_merge_tree_settings.sql
2021-09-12 17:15:28 +03:00

15 lines
334 B
SQL

-- Tags: no-parallel
DROP TABLE IF EXISTS t;
SET mutations_sync = 1;
CREATE TABLE t (x UInt8, s String) ENGINE = MergeTree ORDER BY x SETTINGS number_of_free_entries_in_pool_to_execute_mutation = 15;
INSERT INTO t VALUES (1, 'hello');
SELECT * FROM t;
ALTER TABLE t UPDATE s = 'world' WHERE x = 1;
SELECT * FROM t;
DROP TABLE t;