aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2021-04-13 09:42:01 +0900
committerMichael Paquier <michael@paquier.xyz>2021-04-13 09:42:01 +0900
commit885a87641930778d9580fdf0656af24e3f52d276 (patch)
tree354286b5eaa91f26ab69bc12f589efbbf176669e /src
parentcf0020080a3de20287217621da57bfd840e9a693 (diff)
downloadpostgresql-885a87641930778d9580fdf0656af24e3f52d276.tar.gz
postgresql-885a87641930778d9580fdf0656af24e3f52d276.zip
Remove duplicated --no-sync switches in new tests of test_pg_dump
These got introduced in 6568cef. Reported-by: Noah Misch Discussion: https://postgr.es/m/20210404220802.GA728316@rfd.leadboat.com
Diffstat (limited to 'src')
-rw-r--r--src/test/modules/test_pg_dump/t/001_base.pl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/modules/test_pg_dump/t/001_base.pl b/src/test/modules/test_pg_dump/t/001_base.pl
index 7c053c4e49d..ef98c084939 100644
--- a/src/test/modules/test_pg_dump/t/001_base.pl
+++ b/src/test/modules/test_pg_dump/t/001_base.pl
@@ -198,7 +198,7 @@ my %pgdump_runs = (
with_extension => {
dump_cmd => [
'pg_dump', '--no-sync', "--file=$tempdir/with_extension.sql",
- '--extension=test_pg_dump', '--no-sync', 'postgres',
+ '--extension=test_pg_dump', 'postgres',
],
},
@@ -206,7 +206,7 @@ my %pgdump_runs = (
without_extension => {
dump_cmd => [
'pg_dump', '--no-sync', "--file=$tempdir/without_extension.sql",
- '--extension=plpgsql', '--no-sync', 'postgres',
+ '--extension=plpgsql', 'postgres',
],
},);