Postgres 18: Fix regress tests caused by GROUP RTE. (#8206)

The change in `merge_planner.c` fixes _unrecognized range table entry_
diffs in merge regress tests (category 2 diffs in #7992), the change in
`multi_router_planner.c` fixes _column reference ... is ambiguous_ diffs
in `multi_insert_select` and `multi_insert_select_window` (category 3
diffs in #7992). Edit to `common.py` enables standalone regress tests
with pg18 (e..g `citus_tests/run_test.py merge`).
m3hm3t/pg18_fk_const_fix
Colm 2025-09-22 09:06:39 +01:00 committed by Mehmet Yilmaz
parent a51a6b7cd9
commit 00e6295567
1 changed files with 1 additions and 0 deletions

View File

@ -94,6 +94,7 @@ OLDEST_SUPPORTED_CITUS_VERSION_MATRIX = {
15: "11.1.5", 15: "11.1.5",
16: "12.1.5", 16: "12.1.5",
17: "13.0.1", 17: "13.0.1",
18: "13.2.0",
} }
OLDEST_SUPPORTED_CITUS_VERSION = OLDEST_SUPPORTED_CITUS_VERSION_MATRIX[PG_MAJOR_VERSION] OLDEST_SUPPORTED_CITUS_VERSION = OLDEST_SUPPORTED_CITUS_VERSION_MATRIX[PG_MAJOR_VERSION]