summaryrefslogtreecommitdiff
path: root/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/test')
-rw-r--r--src/test/recovery/t/027_stream_regress.pl8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/recovery/t/027_stream_regress.pl b/src/test/recovery/t/027_stream_regress.pl
index 12d8852fb4b..589c79d97d3 100644
--- a/src/test/recovery/t/027_stream_regress.pl
+++ b/src/test/recovery/t/027_stream_regress.pl
@@ -117,7 +117,7 @@ command_ok(
'pg_dumpall',
'--file' => $outputdir . '/primary.dump',
'--no-sync', '--no-statistics',
- '--restrict-key=test',
+ '--restrict-key' => 'test',
'--port' => $node_primary->port,
'--no-unlogged-table-data', # if unlogged, standby has schema only
],
@@ -127,7 +127,7 @@ command_ok(
'pg_dumpall',
'--file' => $outputdir . '/standby.dump',
'--no-sync', '--no-statistics',
- '--restrict-key=test',
+ '--restrict-key' => 'test',
'--port' => $node_standby_1->port,
],
'dump standby server');
@@ -147,7 +147,7 @@ command_ok(
'--schema' => 'pg_catalog',
'--file' => $outputdir . '/catalogs_primary.dump',
'--no-sync',
- '--restrict-key=test',
+ '--restrict-key' => 'test',
'--port', $node_primary->port,
'--no-unlogged-table-data',
'regression',
@@ -159,7 +159,7 @@ command_ok(
'--schema' => 'pg_catalog',
'--file' => $outputdir . '/catalogs_standby.dump',
'--no-sync',
- '--restrict-key=test',
+ '--restrict-key' => 'test',
'--port' => $node_standby_1->port,
'regression',
],