From f576f1cf0bb5bab9098363e091540e2395a6488d Mon Sep 17 00:00:00 2001 From: Alexander Tokmakov Date: Fri, 16 Jun 2023 14:31:15 +0300 Subject: [PATCH] Update 02445_replicated_db_alter_partition.sh --- .../queries/0_stateless/02445_replicated_db_alter_partition.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/queries/0_stateless/02445_replicated_db_alter_partition.sh b/tests/queries/0_stateless/02445_replicated_db_alter_partition.sh index 349a2ecc925..e07737225db 100755 --- a/tests/queries/0_stateless/02445_replicated_db_alter_partition.sh +++ b/tests/queries/0_stateless/02445_replicated_db_alter_partition.sh @@ -41,7 +41,7 @@ $CLICKHOUSE_CLIENT -q "alter table $db.mt drop partition id 'all', update n = 2 $CLICKHOUSE_CLIENT -q "alter table $db.rmt drop partition id 'all', update n = 2 where 1" 2>&1| grep -Eo "not allowed to execute ALTERs of different types" | head -1 $CLICKHOUSE_CLIENT --distributed_ddl_task_timeout=3 -q "alter table $db.mt update n=2 where n=1" 2>&1| grep -Eo "TIMEOUT_EXCEEDED" | head -1 -$CLICKHOUSE_CLIENT -q "alter table $db.rmt update n=2 where n=1" +$CLICKHOUSE_CLIENT -q "alter table $db.rmt update n=2 where n=1 settings mutations_sync=1" $CLICKHOUSE_CLIENT -q "select 1, * from $db.rmt order by n"