aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAmit Kapila <akapila@postgresql.org>2022-08-02 09:20:38 +0530
committerAmit Kapila <akapila@postgresql.org>2022-08-02 09:20:38 +0530
commit572baf2b3e203db1f9d15a796bb9a23e81986828 (patch)
treeb5b9f132cc395f9f12f626f6daa7df1569303130
parentadc3ae6eb313360800b4b97d3557a175269a240e (diff)
downloadpostgresql-572baf2b3e203db1f9d15a796bb9a23e81986828.tar.gz
postgresql-572baf2b3e203db1f9d15a796bb9a23e81986828.zip
Remove duplicated wait for subscription sync from 007_ddl.pl.
An oversight in 8f2e2bbf14. Author: Masahiko Sawada Reviewed by: Amit Kapila Backpatch-through: 15, where it was introduced Discussion: https://postgr.es/m/CAD21AoC-fvAkaKHa4t1urupwL8xbAcWRePeETvshvy80f6WV1A@mail.gmail.com
-rw-r--r--src/test/subscription/t/007_ddl.pl4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/test/subscription/t/007_ddl.pl b/src/test/subscription/t/007_ddl.pl
index cdd6b119ffb..01df54229c4 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"