Run wal2json cdc test for pg16 as well

pull/7361/head
naisila 2023-11-23 14:35:35 +03:00
parent 0620c8f9a6
commit 99b9db72d3
No known key found for this signature in database
GPG Key ID: A824BA9862D73E6D
2 changed files with 1 additions and 8 deletions

View File

@ -31,7 +31,7 @@ jobs:
pgupgrade_image_name: "citus/pgupgradetester"
style_checker_image_name: "citus/stylechecker"
style_checker_tools_version: "0.8.18"
image_suffix: "-vbd8441d"
image_suffix: "-dev-7ee690b"
pg14_version: '{ "major": "14", "full": "14.10" }'
pg15_version: '{ "major": "15", "full": "15.5" }'
pg16_version: '{ "major": "16", "full": "16.1" }'

View File

@ -9,13 +9,6 @@ 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;