Skip to content

Commit

Permalink
Run wal2json cdc test for pg16 as well (#7361)
Browse files Browse the repository at this point in the history
pg16 wal2json package is now available, adding the tests back. Basically
reverting
f253bb3

Sister PR citusdata/the-process#153
  • Loading branch information
naisila authored Nov 24, 2023
1 parent 0620c8f commit c019acc
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: "-v19b671f"
pg14_version: '{ "major": "14", "full": "14.10" }'
pg15_version: '{ "major": "15", "full": "15.5" }'
pg16_version: '{ "major": "16", "full": "16.1" }'
Expand Down
7 changes: 0 additions & 7 deletions src/test/cdc/t/016_cdc_wal2json.pl
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,6 @@

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;
Expand Down

0 comments on commit c019acc

Please sign in to comment.