Skip to content

Commit 1b18df9

Browse files
jfrocheyvan-sraka
authored andcommitted
fix(ext): missing required attributes in some extension tests
1 parent 28e629e commit 1b18df9

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
@@ -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 = [

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
@@ -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 = [

nix/ext/tests/pg_repack.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 = [

nix/ext/tests/pg_safeupdate.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 = [

nix/ext/tests/pgjwt.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 = [

nix/ext/tests/pgmq.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 = [

nix/ext/tests/pgroonga.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 = [

nix/ext/tests/pgrouting.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,11 @@ let
2424
);
2525
passthru = {
2626
inherit (postgresql) version psqlSchema;
27+
installedExtensions = [ (installedExtension majorVersion) ];
2728
lib = pkg;
2829
withPackages = _: pkg;
30+
withJIT = pkg;
31+
withoutJIT = pkg;
2932
};
3033
nativeBuildInputs = [ pkgs.makeWrapper ];
3134
pathsToLink = [

nix/ext/tests/pgsodium.nix

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

0 commit comments

Comments
 (0)