1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-18 17:41:14 +03:00

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.
This commit is contained in:
Tom Lane 2023-11-14 00:31:39 -05:00
parent 9e08789d48
commit 7836f6838d

View File

@ -677,7 +677,7 @@ my %tests = (
# Create a PG instance to test actually dumping from # Create a PG instance to test actually dumping from
my $node = get_new_node('main'); my $node = get_new_node('main');
$node->init; $node->init('auth_extra' => [ '--create-role', 'regress_dump_login_role' ]);
$node->start; $node->start;
my $port = $node->port; my $port = $node->port;