From 15d9446df2d72d22bc15408094411f1137c1a147 Mon Sep 17 00:00:00 2001 From: Mehmet Yilmaz Date: Tue, 1 Jul 2025 07:52:36 +0000 Subject: [PATCH] Add support for Citus version 14.0.1 and pg18 in the oldest supported version matrix --- src/test/regress/citus_tests/common.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/test/regress/citus_tests/common.py b/src/test/regress/citus_tests/common.py index 00398767e..77e141c34 100644 --- a/src/test/regress/citus_tests/common.py +++ b/src/test/regress/citus_tests/common.py @@ -94,6 +94,7 @@ OLDEST_SUPPORTED_CITUS_VERSION_MATRIX = { 15: "11.1.5", 16: "12.1.5", 17: "13.0.1", + 18: "14.0.1", } OLDEST_SUPPORTED_CITUS_VERSION = OLDEST_SUPPORTED_CITUS_VERSION_MATRIX[PG_MAJOR_VERSION]