summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2023-11-14 00:31:39 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2023-11-14 00:31:39 -0500
commitf1674ac6b05b39c979f245947ad98fe306a2d4a0 (patch)
tree43d8366bf2f181dee6852276f14fe152a0d8ffe4
parent64d2467fc8d34b2a0c84d1c1aadb349a0df4b618 (diff)
Allow new role 'regress_dump_login_role' to log in under SSPI.
Semi-blind attempt to fix a70f2a57f to work on Windows, along the same lines as 5253519b2. Per buildfarm.
-rw-r--r--src/test/modules/test_pg_dump/t/001_base.pl2
1 files changed, 1 insertions, 1 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 68a767d2f59..a5d5b9b35d3 100644
--- a/src/test/modules/test_pg_dump/t/001_base.pl
+++ b/src/test/modules/test_pg_dump/t/001_base.pl
@@ -776,7 +776,7 @@ my %tests = (
# Create a PG instance to test actually dumping from
my $node = PostgreSQL::Test::Cluster->new('main');
-$node->init;
+$node->init('auth_extra' => [ '--create-role', 'regress_dump_login_role' ]);
$node->start;
my $port = $node->port;