aboutsummaryrefslogtreecommitdiff
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
commit63c1b4d88a6fb268cd6cd3b177554257d6c40955 (patch)
tree3c84af54e2833e1d7af0f542542e15a72e89b6e6
parentf15147df625fca1466ff3488ced517c239844eef (diff)
downloadpostgresql-63c1b4d88a6fb268cd6cd3b177554257d6c40955.tar.gz
postgresql-63c1b4d88a6fb268cd6cd3b177554257d6c40955.zip
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 8e974cc9910..23a7901a9db 100644
--- a/src/test/modules/test_pg_dump/t/001_base.pl
+++ b/src/test/modules/test_pg_dump/t/001_base.pl
@@ -771,7 +771,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;