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 16d4616
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion circleci/images/exttester/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,12 @@ 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 PG17
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 16d4616

Please sign in to comment.