Skip wal2json cdc test for pg16

onder_pg16_outer_crash
naisila 2023-08-15 14:48:08 +03:00
parent 7ed6a6fb13
commit f76f0b99f2
1 changed files with 7 additions and 0 deletions

View File

@ -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;