From 4bc82d72a243692fa4e711d9baab612f0213ced4 Mon Sep 17 00:00:00 2001 From: Jan Nidzwetzki Date: Thu, 9 Nov 2023 09:15:01 +0100 Subject: [PATCH] Adjust restore points test for PG 16 Currently, MN is not supported on PG16. Therefore, the creation of distributed restore points fails on PG16. This patch disables the CI test for this PG version. --- .github/workflows/cron-tests.yaml | 2 ++ scripts/test_restore_points.sh | 5 +++++ 2 files changed, 7 insertions(+) diff --git a/.github/workflows/cron-tests.yaml b/.github/workflows/cron-tests.yaml index 633fb616dea..985d99eb174 100644 --- a/.github/workflows/cron-tests.yaml +++ b/.github/workflows/cron-tests.yaml @@ -4,6 +4,8 @@ name: Additional tests branches: - main - prerelease_test + - trigger/additional_tests + jobs: config: runs-on: ubuntu-latest diff --git a/scripts/test_restore_points.sh b/scripts/test_restore_points.sh index f33a7e0f169..6cdbdf37078 100755 --- a/scripts/test_restore_points.sh +++ b/scripts/test_restore_points.sh @@ -297,6 +297,11 @@ if [ ${PG_VERSION_MAJOR} -lt 13 ]; then exit 1 fi +if [ ${PG_VERSION_MAJOR} -ge 16 ]; then + echo "Multi-node is currently not supported on PG >= 16" + exit 0 +fi + mkdir -p ${RESULT_DIR} echo "Running single node tests"