[Backport release-26.05] stellar-core: fix PostgreSQL check on Hydra (#526960)

This commit is contained in:
nixpkgs-ci[bot] 2026-06-02 03:58:40 +00:00 committed by GitHub
commit d7af655fe9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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
'';