Fix tests

This commit is contained in:
alesapin 2019-08-13 13:39:06 +03:00
parent ad81c743c1
commit 9e78781378
2 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ CREATE TABLE log_for_alter (
Data String
) ENGINE = Log();
ALTER TABLE log_for_alter MODIFY SETTING aaa=123; -- { serverError 468 }
ALTER TABLE log_for_alter MODIFY SETTING aaa=123; -- { serverError 469 }
DROP TABLE IF EXISTS log_for_alter;
@ -16,7 +16,7 @@ CREATE TABLE table_for_alter (
Data String
) ENGINE = MergeTree() ORDER BY id SETTINGS index_granularity=4096;
ALTER TABLE table_for_alter MODIFY SETTING index_granularity=555; -- { serverError 469 }
ALTER TABLE table_for_alter MODIFY SETTING index_granularity=555; -- { serverError 470 }
SHOW CREATE TABLE table_for_alter;

View File

@ -13,7 +13,7 @@ CREATE TABLE replicated_table_for_alter2 (
SHOW CREATE TABLE replicated_table_for_alter1;
ALTER TABLE replicated_table_for_alter1 MODIFY SETTING index_granularity = 4096; -- { serverError 469 }
ALTER TABLE replicated_table_for_alter1 MODIFY SETTING index_granularity = 4096; -- { serverError 470 }
SHOW CREATE TABLE replicated_table_for_alter1;