Skip to content

Commit dd649cc

Browse files
committed
feat: re-introduce wal2json rum and pgvector
1 parent 45de660 commit dd649cc

File tree

4 files changed

+9
-12
lines changed

4 files changed

+9
-12
lines changed

ansible/tasks/test-image.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
- name: Remove specified extensions from SQL file
6868
ansible.builtin.command:
6969
cmd: >
70-
sed -i '/\\ir.*\(timescaledb\|postgis\|pgrouting\|plv8\|pgvector\|wal2json\|rum\|pg_jsonschema\|pg_graphql\).*\.sql/d' /tmp/migrations/tests/extensions/test.sql
70+
sed -i '/\\ir.*\(timescaledb\|postgis\|pgrouting\|plv8\|pg_jsonschema\|pg_graphql\).*\.sql/d' /tmp/migrations/tests/extensions/test.sql
7171
when: is_psql_oriole
7272
become: yes
7373

@@ -79,9 +79,6 @@
7979
- '*postgis*.sql'
8080
- '*pgrouting*.sql'
8181
- '*plv8*.sql'
82-
- '*pgvector*.sql'
83-
- '*wal2json*.sql'
84-
- '*rum.sql'
8582
- '*pg_jsonschema*.sql'
8683
- '*pg_graphql*.sql'
8784
register: files_to_remove

flake.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,14 +151,14 @@
151151
orioleFilteredExtensions = builtins.filter (
152152
x:
153153
x != ./nix/ext/timescaledb.nix &&
154-
x != ./nix/ext/pgvector.nix &&
154+
#x != ./nix/ext/pgvector.nix &&
155155
x != ./nix/ext/plv8.nix &&
156156
x != ./nix/ext/postgis.nix &&
157157
x != ./nix/ext/pgrouting.nix &&
158158
x != ./nix/ext/pg_jsonschema.nix &&
159-
x != ./nix/ext/pg_graphql.nix &&
160-
x != ./nix/ext/rum.nix &&
161-
x != ./nix/ext/wal2json.nix
159+
x != ./nix/ext/pg_graphql.nix
160+
#x != ./nix/ext/rum.nix
161+
#x != ./nix/ext/wal2json.nix
162162
) ourExtensions;
163163

164164
orioledbExtensions = orioleFilteredExtensions ++ [ ./nix/ext/orioledb.nix ];

nix/ext/rum.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
stdenv.mkDerivation rec {
44
pname = "rum";
5-
version = "1.3.13";
5+
version = "1.3.14";
66

77
src = fetchFromGitHub {
88
owner = "postgrespro";
99
repo = "rum";
1010
rev = version;
11-
hash = "sha256-yy2xeDnk3fENN+En0st4mv60nZlqPafIzwf68jwJ5fE=";
11+
hash = "sha256-VsfpxQqRBu9bIAP+TfMRXd+B3hSjuhU2NsutocNiCt8=";
1212
};
1313

1414
buildInputs = [ postgresql ];

nix/ext/wal2json.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,13 @@
22

33
stdenv.mkDerivation rec {
44
pname = "wal2json";
5-
version = "2_5";
5+
version = "2_6";
66

77
src = fetchFromGitHub {
88
owner = "eulerto";
99
repo = "wal2json";
1010
rev = "wal2json_${builtins.replaceStrings ["."] ["_"] version}";
11-
hash = "sha256-Gpc9uDKrs/dmVSFgdgHM453+TaEnhRh9t0gDbSn8FUI=";
11+
hash = "sha256-+QoACPCKiFfuT2lJfSUmgfzC5MXf75KpSoc2PzPxKyM=";
1212
};
1313

1414
buildInputs = [ postgresql ];

0 commit comments

Comments
 (0)