Skip to content

Commit

Permalink
Update pgvecto.rs to 0.4.0
Browse files Browse the repository at this point in the history
This includes pg17 support.
  • Loading branch information
graveland committed Nov 21, 2024
1 parent 95248b3 commit 98cbdea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,8 @@ ARG PGVECTO_RS
RUN set -ex; \
if [ -n "${PGVECTO_RS}" ]; then \
for pg in ${PG_VERSIONS}; do \
# Vecto.rs only support PostgreSQL 14..16
if [ $pg -gt 13 -a $pg -lt 17 ]; then \
# Vecto.rs only support PostgreSQL 14+
if [ $pg -ge 14 ]; then \
curl --silent \
--location \
--output /tmp/vectors.deb \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ POSTGIS_VERSIONS?=3
PG_AUTH_MON?=v3.0
PG_STAT_MONITOR?=2.1.0
PG_LOGERRORS?=v2.1.3
PGVECTO_RS?=0.3.0
PGVECTO_RS?=0.4.0
TIMESCALEDB_VERSIONS?=all
PROMSCALE_VERSIONS?=all
TOOLKIT_VERSIONS?=all
Expand Down

0 comments on commit 98cbdea

Please sign in to comment.