Skip to content

Commit

Permalink
wal2json not available yet for pg17
Browse files Browse the repository at this point in the history
  • Loading branch information
naisila committed Jul 23, 2024
1 parent df8b705 commit 822d697
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion circleci/images/exttester/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,11 @@ apt-get install -y --no-install-recommends --allow-downgrades \
postgresql-client-${PG_MAJOR}=${pgdg_version} \
postgresql-${PG_MAJOR}-dbgsym=${pgdg_version} \
postgresql-server-dev-${PG_MAJOR}=${pgdg_version} \
postgresql-${PG_MAJOR}-wal2json \
# wal2json not available yet for PG16
&& if [ "$PG_MAJOR" != "17" ]; \
then \
apt-get install -y --no-install-recommends --allow-downgrades postgresql-${PG_MAJOR}-wal2json; \
fi \

# clear apt cache
rm -rf /var/lib/apt/lists/*
Expand Down

0 comments on commit 822d697

Please sign in to comment.