1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-30 11:03:19 +03:00

Authorize new user in pg_basebackup tests

Commit 8e2b6d45a0 added a new unprivileged user for testing
pg_basebackup, but omitted to add them to the cluster's authorized
logins, breaking Windows  tests run without using Unix sockets.
This commit is contained in:
Andrew Dunstan
2022-02-03 12:13:11 -05:00
parent 94aa7cc5f7
commit c1838b6f7a

View File

@ -31,7 +31,8 @@ my @pg_basebackup_defs = ('pg_basebackup', '--no-sync', '-cfast');
umask(0077);
# Initialize node without replication settings
$node->init(extra => ['--data-checksums']);
$node->init(extra => ['--data-checksums'],
auth_extra => [ '--create-role', 'backupuser' ]);
$node->start;
my $pgdata = $node->data_dir;