Skip to content

Commit 97c354c

Browse files
committed
fix: nixos test running pg_regress for pgmq
Configure default `search_path` parameter for postgresql running in the nixos test environment.
1 parent 0f390da commit 97c354c

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

nix/ext/pgmq/default.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,9 @@ buildEnv {
100100

101101
passthru = {
102102
inherit versions numberOfVersions;
103+
defaultSettings = {
104+
search_path = "\"$user\", public, auth, extensions";
105+
};
103106
pname = "${pname}-all";
104107
version =
105108
"multi-" + lib.concatStringsSep "-" (map (v: lib.replaceStrings [ "." ] [ "-" ] v) versions);

0 commit comments

Comments
 (0)