mirror of https://github.com/citusdata/citus.git
Run wal2json cdc test for pg16 as well (#7361)
pg16 wal2json package is now available, adding the tests back. Basically
reverting
f253bb3210
Sister PR https://github.com/citusdata/the-process/pull/153
naisila/rename-cdc-test
parent
0620c8f9a6
commit
c019acc01b
|
@ -31,7 +31,7 @@ jobs:
|
||||||
pgupgrade_image_name: "citus/pgupgradetester"
|
pgupgrade_image_name: "citus/pgupgradetester"
|
||||||
style_checker_image_name: "citus/stylechecker"
|
style_checker_image_name: "citus/stylechecker"
|
||||||
style_checker_tools_version: "0.8.18"
|
style_checker_tools_version: "0.8.18"
|
||||||
image_suffix: "-vbd8441d"
|
image_suffix: "-v19b671f"
|
||||||
pg14_version: '{ "major": "14", "full": "14.10" }'
|
pg14_version: '{ "major": "14", "full": "14.10" }'
|
||||||
pg15_version: '{ "major": "15", "full": "15.5" }'
|
pg15_version: '{ "major": "15", "full": "15.5" }'
|
||||||
pg16_version: '{ "major": "16", "full": "16.1" }'
|
pg16_version: '{ "major": "16", "full": "16.1" }'
|
||||||
|
|
|
@ -9,13 +9,6 @@ use cdctestlib;
|
||||||
|
|
||||||
use threads;
|
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
|
# Initialize co-ordinator node
|
||||||
my $select_stmt = qq(SELECT * FROM data_100008 ORDER BY id;);
|
my $select_stmt = qq(SELECT * FROM data_100008 ORDER BY id;);
|
||||||
my $result = 0;
|
my $result = 0;
|
||||||
|
|
Loading…
Reference in New Issue