diff options
author | Michael Paquier <michael@paquier.xyz> | 2025-08-21 14:17:26 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2025-08-21 14:17:26 +0900 |
commit | e8eb98754b112cf00d328becbe33958229cb20bf (patch) | |
tree | 887b91e44c1e16b3ec41ef01d1403b709819d69c /src/test | |
parent | b5d87a823f2f828f65005b31f0a547549f164e5f (diff) |
Apply some fat commas to commands of TAP tests
This is similar to 19c6e92b13b2, in order to keep the style used in the
scripts consistent for the option names and values used in commands.
The places updated in this commit have been added recently in
71ea0d679543.
These changes are cosmetic; there is no need for a backpatch.
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/recovery/t/027_stream_regress.pl | 8 |
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', ], |