Skip to content

Commit a1efc9b

Browse files
committed
fix: also restore pgvector in start-server
1 parent dd649cc commit a1efc9b

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

flake.nix

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -151,14 +151,11 @@
151151
orioleFilteredExtensions = builtins.filter (
152152
x:
153153
x != ./nix/ext/timescaledb.nix &&
154-
#x != ./nix/ext/pgvector.nix &&
155154
x != ./nix/ext/plv8.nix &&
156155
x != ./nix/ext/postgis.nix &&
157156
x != ./nix/ext/pgrouting.nix &&
158157
x != ./nix/ext/pg_jsonschema.nix &&
159158
x != ./nix/ext/pg_graphql.nix
160-
#x != ./nix/ext/rum.nix
161-
#x != ./nix/ext/wal2json.nix
162159
) ourExtensions;
163160

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

nix/tools/run-server.sh.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ remove_config_items() {
7070
sed -i 's/ timescaledb,//g;' "$DATDIR/postgresql.conf"
7171
#as of pg 16.4 + this db_user_namespace totally deprecated and will break the server if setting is present
7272
sed -i 's/db_user_namespace = off/#db_user_namespace = off/g;' "$DATDIR/postgresql.conf"
73-
sed -i 's/ timescaledb,//g; s/ vector,//g; s/ plv8,//g; s/ postgis,//g; s/ pgrouting,//g' "$DATDIR/supautils.conf"
73+
sed -i 's/ timescaledb,//g; s/ plv8,//g; s/ postgis,//g; s/ pgrouting,//g' "$DATDIR/supautils.conf"
7474
fi
7575
}
7676
remove_config_items "$1"

0 commit comments

Comments
 (0)