From 34b0dbad611ff038536f7ff7a4d06a530772d666 Mon Sep 17 00:00:00 2001 From: Nitish Upreti Date: Wed, 14 Sep 2022 16:38:38 -0700 Subject: [PATCH] Log minimum --- src/test/regress/sql/failure_on_create_subscription.sql | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/test/regress/sql/failure_on_create_subscription.sql b/src/test/regress/sql/failure_on_create_subscription.sql index b5a649008..fdae26800 100644 --- a/src/test/regress/sql/failure_on_create_subscription.sql +++ b/src/test/regress/sql/failure_on_create_subscription.sql @@ -34,7 +34,9 @@ SELECT * FROM shards_in_workers; -- failure on creating the subscription SELECT citus.mitmproxy('conn.onQuery(query="CREATE SUBSCRIPTION").kill()'); +SET client_min_messages TO ERROR; SELECT master_move_shard_placement(101, 'localhost', :worker_1_port, 'localhost', :worker_2_proxy_port); +RESET client_min_messages; -- Verify that the shard is not moved and the number of rows are still 100k SELECT * FROM shards_in_workers;