From f76f0b99f298daf8d4067d154c512a4337d7e471 Mon Sep 17 00:00:00 2001 From: naisila Date: Tue, 15 Aug 2023 14:48:08 +0300 Subject: [PATCH] Skip wal2json cdc test for pg16 --- src/test/cdc/t/016_cdc_wal2json.pl | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/test/cdc/t/016_cdc_wal2json.pl b/src/test/cdc/t/016_cdc_wal2json.pl index ab384df64..10475ba85 100644 --- a/src/test/cdc/t/016_cdc_wal2json.pl +++ b/src/test/cdc/t/016_cdc_wal2json.pl @@ -9,6 +9,13 @@ use cdctestlib; use threads; +my $pg_major_version = int($ENV{'pg_major_version'}); +print("working with PG major version : $pg_major_version\n"); +if ($pg_major_version >= 16) { + plan skip_all => 'wal2json is not available for PG16 yet'; + exit 0; +} + # Initialize co-ordinator node my $select_stmt = qq(SELECT * FROM data_100008 ORDER BY id;); my $result = 0;