From 6bf2d017b4565765047d7f634136d978f5ed2389 Mon Sep 17 00:00:00 2001 From: Masahiko Sawada Date: Tue, 26 Jul 2022 16:37:26 +0900 Subject: [PATCH v3 1/2] Remove duplicated wait for subscription synchronization from 007_ddl.pl An oversight in 8f2e2bbf145. XXX: backpatch to v15? Author: Masahiko Sawada Reviewed by: Amit Kapila Discussion: https://postgr.es/m/CAD21AoC-fvAkaKHa4t1urupwL8xbAcWRePeETvshvy80f6WV1A@mail.gmail.com --- src/test/subscription/t/007_ddl.pl | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/test/subscription/t/007_ddl.pl b/src/test/subscription/t/007_ddl.pl index cdd6b119ff..01df54229c 100644 --- a/src/test/subscription/t/007_ddl.pl +++ b/src/test/subscription/t/007_ddl.pl @@ -57,10 +57,6 @@ my $synced_query = $node_subscriber->poll_query_until('postgres', $synced_query) or die "Timed out while waiting for subscriber to synchronize data"; -# Also wait for initial table sync to finish. -$node_subscriber->poll_query_until('postgres', $synced_query) - or die "Timed out while waiting for subscriber to synchronize data"; - # Specifying non-existent publication along with add publication. ($ret, $stdout, $stderr) = $node_subscriber->psql('postgres', "ALTER SUBSCRIPTION mysub1 ADD PUBLICATION non_existent_pub1, non_existent_pub2" -- 2.24.3 (Apple Git-128)