2019-08-06 12:52:08 +00:00
|
|
|
DROP TABLE IF EXISTS log_for_alter;
|
|
|
|
|
|
|
|
CREATE TABLE log_for_alter (
|
|
|
|
id UInt64,
|
|
|
|
Data String
|
|
|
|
) ENGINE = Log();
|
|
|
|
|
2020-02-28 12:44:50 +00:00
|
|
|
ALTER TABLE log_for_alter MODIFY SETTING aaa=123; -- { serverError 36 }
|
2019-08-06 12:52:08 +00:00
|
|
|
|
|
|
|
DROP TABLE IF EXISTS log_for_alter;
|
|
|
|
|
|
|
|
DROP TABLE IF EXISTS table_for_alter;
|
|
|
|
|
|
|
|
CREATE TABLE table_for_alter (
|
|
|
|
id UInt64,
|
|
|
|
Data String
|
|
|
|
) ENGINE = MergeTree() ORDER BY id SETTINGS index_granularity=4096;
|
|
|
|
|
2019-08-26 10:07:32 +00:00
|
|
|
ALTER TABLE table_for_alter MODIFY SETTING index_granularity=555; -- { serverError 472 }
|
2019-08-06 12:52:08 +00:00
|
|
|
|
|
|
|
SHOW CREATE TABLE table_for_alter;
|
|
|
|
|
|
|
|
ALTER TABLE table_for_alter MODIFY SETTING parts_to_throw_insert = 1, parts_to_delay_insert = 1;
|
|
|
|
|
|
|
|
SHOW CREATE TABLE table_for_alter;
|
|
|
|
|
|
|
|
INSERT INTO table_for_alter VALUES (1, '1');
|
|
|
|
INSERT INTO table_for_alter VALUES (2, '2'); -- { serverError 252 }
|
|
|
|
|
|
|
|
DETACH TABLE table_for_alter;
|
|
|
|
|
|
|
|
ATTACH TABLE table_for_alter;
|
|
|
|
|
|
|
|
INSERT INTO table_for_alter VALUES (2, '2'); -- { serverError 252 }
|
|
|
|
|
|
|
|
ALTER TABLE table_for_alter MODIFY SETTING xxx_yyy=124; -- { serverError 115 }
|
|
|
|
|
2019-08-07 13:35:28 +00:00
|
|
|
ALTER TABLE table_for_alter MODIFY SETTING parts_to_throw_insert = 100, parts_to_delay_insert = 100;
|
2019-08-06 14:09:36 +00:00
|
|
|
|
|
|
|
INSERT INTO table_for_alter VALUES (2, '2');
|
|
|
|
|
|
|
|
SHOW CREATE TABLE table_for_alter;
|
|
|
|
|
|
|
|
SELECT COUNT() FROM table_for_alter;
|
|
|
|
|
|
|
|
ALTER TABLE table_for_alter MODIFY SETTING check_delay_period=10, check_delay_period=20, check_delay_period=30;
|
|
|
|
|
|
|
|
SHOW CREATE TABLE table_for_alter;
|
|
|
|
|
2019-08-27 09:34:53 +00:00
|
|
|
ALTER TABLE table_for_alter ADD COLUMN Data2 UInt64, MODIFY SETTING check_delay_period=5, check_delay_period=10, check_delay_period=15;
|
|
|
|
|
|
|
|
SHOW CREATE TABLE table_for_alter;
|
|
|
|
|
2019-08-06 12:52:08 +00:00
|
|
|
DROP TABLE IF EXISTS table_for_alter;
|
|
|
|
|
2020-12-02 21:18:25 +00:00
|
|
|
|
|
|
|
DROP TABLE IF EXISTS table_for_reset_setting;
|
|
|
|
|
|
|
|
CREATE TABLE table_for_reset_setting (
|
|
|
|
id UInt64,
|
|
|
|
Data String
|
|
|
|
) ENGINE = MergeTree() ORDER BY id SETTINGS index_granularity=4096;
|
|
|
|
|
|
|
|
ALTER TABLE table_for_reset_setting MODIFY SETTING index_granularity=555; -- { serverError 472 }
|
|
|
|
|
|
|
|
SHOW CREATE TABLE table_for_reset_setting;
|
|
|
|
|
|
|
|
INSERT INTO table_for_reset_setting VALUES (1, '1');
|
|
|
|
INSERT INTO table_for_reset_setting VALUES (2, '2');
|
|
|
|
|
|
|
|
ALTER TABLE table_for_reset_setting MODIFY SETTING parts_to_throw_insert = 1, parts_to_delay_insert = 1;
|
|
|
|
|
|
|
|
SHOW CREATE TABLE table_for_reset_setting;
|
|
|
|
|
|
|
|
INSERT INTO table_for_reset_setting VALUES (1, '1'); -- { serverError 252 }
|
|
|
|
|
|
|
|
ALTER TABLE table_for_reset_setting RESET SETTING parts_to_delay_insert, parts_to_throw_insert;
|
|
|
|
|
|
|
|
SHOW CREATE TABLE table_for_reset_setting;
|
|
|
|
|
|
|
|
INSERT INTO table_for_reset_setting VALUES (1, '1');
|
|
|
|
INSERT INTO table_for_reset_setting VALUES (2, '2');
|
|
|
|
|
|
|
|
DETACH TABLE table_for_reset_setting;
|
|
|
|
ATTACH TABLE table_for_reset_setting;
|
|
|
|
|
|
|
|
SHOW CREATE TABLE table_for_reset_setting;
|
|
|
|
|
|
|
|
ALTER TABLE table_for_reset_setting RESET SETTING index_granularity; -- { serverError 472 }
|
|
|
|
|
|
|
|
-- ignore undefined setting
|
|
|
|
ALTER TABLE table_for_reset_setting RESET SETTING merge_with_ttl_timeout, unknown_setting;
|
|
|
|
|
|
|
|
ALTER TABLE table_for_reset_setting MODIFY SETTING merge_with_ttl_timeout = 300, max_concurrent_queries = 1;
|
|
|
|
|
|
|
|
SHOW CREATE TABLE table_for_reset_setting;
|
|
|
|
|
|
|
|
ALTER TABLE table_for_reset_setting RESET SETTING max_concurrent_queries, merge_with_ttl_timeout;
|
|
|
|
|
|
|
|
SHOW CREATE TABLE table_for_reset_setting;
|
|
|
|
|
|
|
|
DROP TABLE IF EXISTS table_for_reset_setting;
|