mirror of
https://github.com/postgres/postgres.git
synced 2026-02-14 08:13:27 -05:00
Allow roles created by new test to log in under SSPI.
Semi-blind attempt to fix6a1d0d470to work on Windows, along the same lines asa70f2a57f. Per buildfarm.
This commit is contained in:
parent
cf54a2c002
commit
9735428661
1 changed files with 4 additions and 1 deletions
|
|
@ -12,7 +12,10 @@ use Test::More;
|
|||
|
||||
# Initialize the server with specific low connection limits
|
||||
my $node = PostgreSQL::Test::Cluster->new('primary');
|
||||
$node->init;
|
||||
$node->init(
|
||||
'auth_extra' => [
|
||||
'--create-role', 'regress_regular,regress_reserved,regress_superuser'
|
||||
]);
|
||||
$node->append_conf('postgresql.conf', "max_connections = 6");
|
||||
$node->append_conf('postgresql.conf', "reserved_connections = 2");
|
||||
$node->append_conf('postgresql.conf', "superuser_reserved_connections = 1");
|
||||
|
|
|
|||
Loading…
Reference in a new issue