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
commite43790342be29addaa843b80e8f58334fe7346d3 (patch)
tree0506a11b0d1ca3c3e7fe995936db423f31d77b7a
parent891afa84c27efb2d496540cbc0b5dd1faaec4e91 (diff)
downloadpostgresql-e43790342be29addaa843b80e8f58334fe7346d3.tar.gz
postgresql-e43790342be29addaa843b80e8f58334fe7346d3.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 1aee7f62672..310cc2dcfa6 100644
--- a/src/test/modules/test_pg_dump/t/001_base.pl
+++ b/src/test/modules/test_pg_dump/t/001_base.pl
@@ -677,7 +677,7 @@ my %tests = (
# Create a PG instance to test actually dumping from
my $node = get_new_node('main');
-$node->init;
+$node->init('auth_extra' => [ '--create-role', 'regress_dump_login_role' ]);
$node->start;
my $port = $node->port;