diff --git a/tests/queries/0_stateless/03234_replicated_table_parent_znode_cleanup.reference b/tests/queries/0_stateless/03234_replicated_table_parent_znode_cleanup.reference index b5f91eec256..b261da18d51 100644 --- a/tests/queries/0_stateless/03234_replicated_table_parent_znode_cleanup.reference +++ b/tests/queries/0_stateless/03234_replicated_table_parent_znode_cleanup.reference @@ -1,4 +1,2 @@ -s1 r1 OK 0 0 1 -s1 r1 OK 0 0 0 diff --git a/tests/queries/0_stateless/03234_replicated_table_parent_znode_cleanup.sh b/tests/queries/0_stateless/03234_replicated_table_parent_znode_cleanup.sh index eec552e1b58..9ab06680201 100755 --- a/tests/queries/0_stateless/03234_replicated_table_parent_znode_cleanup.sh +++ b/tests/queries/0_stateless/03234_replicated_table_parent_znode_cleanup.sh @@ -5,11 +5,11 @@ CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd) db="rdb_$CLICKHOUSE_DATABASE" -$CLICKHOUSE_CLIENT -nq " +$CLICKHOUSE_CLIENT --distributed_ddl_output_mode=none -nq " create database $db engine=Replicated('/test/$CLICKHOUSE_DATABASE/rdb', 's1', 'r1'); create table $db.a (x Int8) engine ReplicatedMergeTree order by x;" uuid=`$CLICKHOUSE_CLIENT -q "select uuid from system.tables where database = '$db' and name = 'a'"` -$CLICKHOUSE_CLIENT -nq " +$CLICKHOUSE_CLIENT --distributed_ddl_output_mode=none -nq " select count() from system.zookeeper where path = '/clickhouse/tables' and name = '$uuid'; drop table $db.a sync; select count() from system.zookeeper where path = '/clickhouse/tables' and name = '$uuid';"