diff options
author | Noah Misch <noah@leadboat.com> | 2022-06-25 09:07:41 -0700 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2022-06-25 09:07:41 -0700 |
commit | 2f2e24d90c402738765cb7a458bfc459138ae6b9 (patch) | |
tree | 19fc91edf68aff20921387306c976778f48d64e5 | |
parent | 901a9d53011573e45cd7b87682f0520ef3b0fd2d (diff) | |
download | postgresql-2f2e24d90c402738765cb7a458bfc459138ae6b9.tar.gz postgresql-2f2e24d90c402738765cb7a458bfc459138ae6b9.zip |
Use --no-unlogged-table-data in t/027_stream_regress.pl.
This removes the need to drop unlogged relations in the src/test/regress
suite, like commit dec8ad367e46180f826d5b6dc820fbecba1b71d2 did.
Reviewed by Thomas Munro.
Discussion: https://postgr.es/m/39945.1650895508@sss.pgh.pa.us
-rw-r--r-- | src/test/recovery/t/027_stream_regress.pl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/recovery/t/027_stream_regress.pl b/src/test/recovery/t/027_stream_regress.pl index fdb4ea0bf50..7982ac08d0a 100644 --- a/src/test/recovery/t/027_stream_regress.pl +++ b/src/test/recovery/t/027_stream_regress.pl @@ -100,7 +100,8 @@ $node_primary->wait_for_catchup($node_standby_1, 'replay', command_ok( [ 'pg_dumpall', '-f', $outputdir . '/primary.dump', - '--no-sync', '-p', $node_primary->port + '--no-sync', '-p', $node_primary->port, + '--no-unlogged-table-data' # if unlogged, standby has schema only ], 'dump primary server'); command_ok( |