Skip to content

Commit c7604f1

Browse files
committed
fix: must symlink to timescaledb.so on switch
1 parent eb7407a commit c7604f1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

ansible/vars.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ postgres_major:
99

1010
# Full version strings for each major version
1111
postgres_release:
12-
postgresorioledb-17: "17.5.1.026-orioledb-timescale-4"
13-
postgres17: "17.6.1.005-timescale-4"
14-
postgres15: "15.14.1.005-timescale-4"
12+
postgresorioledb-17: "17.5.1.026-orioledb-timescale-5"
13+
postgres17: "17.6.1.005-timescale-5"
14+
postgres15: "15.14.1.005-timescale-5"
1515

1616
# Non Postgres Extensions
1717
pgbouncer_release: "1.19.0"

nix/ext/timescaledb.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ let
106106
text = ''
107107
EXT_LOADER_TO_USE="$EXT_WRAPPER_LIB/$EXT_NAME-loader-$VERSION${postgresql.dlSuffix}"
108108
if [ -f "$EXT_LOADER_TO_USE" ]; then
109-
ln -sfnv "$EXT_LOADER_TO_USE" "$EXT_WRAPPER_LIB/$EXT_NAME-loader${postgresql.dlSuffix}"
109+
ln -sfnv "$EXT_LOADER_TO_USE" "$EXT_WRAPPER_LIB/$EXT_NAME${postgresql.dlSuffix}"
110110
fi
111111
'';
112112
};

0 commit comments

Comments
 (0)