From: Tom Lane Date: Sun, 4 Jan 2026 23:14:02 +0000 (-0500) Subject: Allow role created by new test to log in on Windows. X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3fbc9a8de75206805a4252969a5896e6f6e5929;p=thirdparty%2Fpostgresql.git Allow role created by new test to log in on Windows. We must tell init about each role name we plan to connect as, else SSPI auth fails. Similar to previous patches such as da44d71e7. Oversight in f3c9e341c, per buildfarm member drongo. --- diff --git a/src/test/modules/test_extensions/t/001_extension_control_path.pl b/src/test/modules/test_extensions/t/001_extension_control_path.pl index 8216b9dfbff..0660b0a38db 100644 --- a/src/test/modules/test_extensions/t/001_extension_control_path.pl +++ b/src/test/modules/test_extensions/t/001_extension_control_path.pl @@ -9,7 +9,7 @@ use Test::More; my $node = PostgreSQL::Test::Cluster->new('node'); -$node->init; +$node->init('auth_extra' => [ '--create-role', 'user01' ]); # Create temporary directories for the extension control files my $ext_dir = PostgreSQL::Test::Utils::tempdir();