Skip to content

Commit 7f7fad9

Browse files
committed
fix(ext): missing required attributes in some extension tests
1 parent fe264db commit 7f7fad9

File tree

15 files changed

+45
-0
lines changed

15 files changed

+45
-0
lines changed

nix/ext/tests/http.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@ let
1818
];
1919
passthru = {
2020
inherit (postgresql) version psqlSchema;
21+
installedExtensions = [ (installedExtension majorVersion) ];
2122
lib = pkg;
2223
withPackages = _: pkg;
24+
withJIT = pkg;
25+
withoutJIT = pkg;
2326
};
2427
nativeBuildInputs = [ pkgs.makeWrapper ];
2528
pathsToLink = [

nix/ext/tests/orioledb.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@ let
1515
];
1616
passthru = {
1717
inherit (postgresql) version psqlSchema;
18+
installedExtensions = [ self.packages.${pkgs.system}."psql_orioledb-17/exts/orioledb" ];
1819
lib = pkg;
1920
withPackages = _: pkg;
21+
withJIT = pkg;
22+
withoutJIT = pkg;
2023
};
2124
nativeBuildInputs = [ pkgs.makeWrapper ];
2225
pathsToLink = [

nix/ext/tests/pg_plan_filter.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@ let
1818
];
1919
passthru = {
2020
inherit (postgresql) version psqlSchema;
21+
installedExtensions = [ (installedExtension majorVersion) ];
2122
lib = pkg;
2223
withPackages = _: pkg;
24+
withJIT = pkg;
25+
withoutJIT = pkg;
2326
};
2427
nativeBuildInputs = [ pkgs.makeWrapper ];
2528
pathsToLink = [

nix/ext/tests/pg_repack.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@ let
1818
];
1919
passthru = {
2020
inherit (postgresql) version psqlSchema;
21+
installedExtensions = [ (installedExtension majorVersion) ];
2122
lib = pkg;
2223
withPackages = _: pkg;
24+
withJIT = pkg;
25+
withoutJIT = pkg;
2326
};
2427
nativeBuildInputs = [ pkgs.makeWrapper ];
2528
pathsToLink = [

nix/ext/tests/pg_safeupdate.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@ let
1818
];
1919
passthru = {
2020
inherit (postgresql) version psqlSchema;
21+
installedExtensions = [ (installedExtension majorVersion) ];
2122
lib = pkg;
2223
withPackages = _: pkg;
24+
withJIT = pkg;
25+
withoutJIT = pkg;
2326
};
2427
nativeBuildInputs = [ pkgs.makeWrapper ];
2528
pathsToLink = [

nix/ext/tests/pgjwt.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@ let
1818
];
1919
passthru = {
2020
inherit (postgresql) version psqlSchema;
21+
installedExtensions = [ (installedExtension majorVersion) ];
2122
lib = pkg;
2223
withPackages = _: pkg;
24+
withJIT = pkg;
25+
withoutJIT = pkg;
2326
};
2427
nativeBuildInputs = [ pkgs.makeWrapper ];
2528
pathsToLink = [

nix/ext/tests/pgmq.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@ let
1818
];
1919
passthru = {
2020
inherit (postgresql) version psqlSchema;
21+
installedExtensions = [ (installedExtension majorVersion) ];
2122
lib = pkg;
2223
withPackages = _: pkg;
24+
withJIT = pkg;
25+
withoutJIT = pkg;
2326
};
2427
nativeBuildInputs = [ pkgs.makeWrapper ];
2528
pathsToLink = [

nix/ext/tests/pgroonga.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,11 @@ let
1818
];
1919
passthru = {
2020
inherit (postgresql) version psqlSchema;
21+
installedExtensions = [ (installedExtension majorVersion) ];
2122
lib = pkg;
2223
withPackages = _: pkg;
24+
withJIT = pkg;
25+
withoutJIT = pkg;
2326
};
2427
nativeBuildInputs = [ pkgs.makeWrapper ];
2528
pathsToLink = [

nix/ext/tests/pgrouting.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,11 @@ let
2121
) self.packages.${pkgs.system}."psql_orioledb-17/exts/orioledb";
2222
passthru = {
2323
inherit (postgresql) version psqlSchema;
24+
installedExtensions = [ (installedExtension majorVersion) ];
2425
lib = pkg;
2526
withPackages = _: pkg;
27+
withJIT = pkg;
28+
withoutJIT = pkg;
2629
};
2730
nativeBuildInputs = [ pkgs.makeWrapper ];
2831
pathsToLink = [

nix/ext/tests/pgsodium.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,11 @@ let
1919
];
2020
passthru = {
2121
inherit (postgresql) version psqlSchema;
22+
installedExtensions = [ (installedExtension majorVersion) ];
2223
lib = pkg;
2324
withPackages = _: pkg;
25+
withJIT = pkg;
26+
withoutJIT = pkg;
2427
};
2528
nativeBuildInputs = [ pkgs.makeWrapper ];
2629
pathsToLink = [

0 commit comments

Comments
 (0)