mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
[Backport release-26.05] stellar-core: fix PostgreSQL check on Hydra (#526960)
This commit is contained in:
commit
d7af655fe9
1 changed files with 2 additions and 2 deletions
|
|
@ -129,10 +129,10 @@ stdenv.mkDerivation (finalAttrs: {
|
|||
|
||||
doCheck = true;
|
||||
|
||||
postgresqlTestUserOptions = "LOGIN CREATEDB";
|
||||
postgresqlTestUserOptions = "LOGIN SUPERUSER";
|
||||
|
||||
postgresqlTestSetupPost = ''
|
||||
for database in $(seq 0 15); do
|
||||
for database in $(seq 0 3); do
|
||||
createdb "test$database"
|
||||
done
|
||||
'';
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue