summaryrefslogtreecommitdiff
path: root/src/test/subscription/t/010_truncate.pl
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/subscription/t/010_truncate.pl')
-rw-r--r--src/test/subscription/t/010_truncate.pl9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/test/subscription/t/010_truncate.pl b/src/test/subscription/t/010_truncate.pl
index 065f5b0a3c..5617469a2c 100644
--- a/src/test/subscription/t/010_truncate.pl
+++ b/src/test/subscription/t/010_truncate.pl
@@ -197,11 +197,9 @@ $node_publisher->safe_psql('postgres', "SELECT pg_reload_conf()");
# test that truncate works for logical replication when there are multiple
# subscriptions for a single table
-$node_publisher->safe_psql('postgres',
- "CREATE TABLE tab5 (a int)");
+$node_publisher->safe_psql('postgres', "CREATE TABLE tab5 (a int)");
-$node_subscriber->safe_psql('postgres',
- "CREATE TABLE tab5 (a int)");
+$node_subscriber->safe_psql('postgres', "CREATE TABLE tab5 (a int)");
$node_publisher->safe_psql('postgres',
"CREATE PUBLICATION pub5 FOR TABLE tab5");
@@ -235,8 +233,7 @@ $node_publisher->wait_for_catchup('sub5_2');
$result = $node_subscriber->safe_psql('postgres',
"SELECT count(*), min(a), max(a) FROM tab5");
-is($result, qq(0||),
- 'truncate replicated for multiple subscriptions');
+is($result, qq(0||), 'truncate replicated for multiple subscriptions');
# check deadlocks
$result = $node_subscriber->safe_psql('postgres',