]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Allow new role 'regress_dump_login_role' to log in under SSPI.
authorTom Lane <tgl@sss.pgh.pa.us>
Tue, 14 Nov 2023 05:31:39 +0000 (00:31 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Tue, 14 Nov 2023 05:31:39 +0000 (00:31 -0500)
Semi-blind attempt to fix a70f2a57f to work on Windows,
along the same lines as 5253519b2.  Per buildfarm.

src/test/modules/test_pg_dump/t/001_base.pl

index 8e974cc9910f892440b1be4547c30b5fb3dd29a9..23a7901a9db3d6d7829eda7549ba4cbb7d806bba 100644 (file)
@@ -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;