mirror of
https://github.com/postgres/postgres.git
synced 2025-12-19 17:02:53 +03:00
Apply some fat commas to commands of TAP tests
This is similar to19c6e92b13, 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 in71ea0d6795. These changes are cosmetic; there is no need for a backpatch.
This commit is contained in:
@@ -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',
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user