From d02453f0ab5994f4edaa88ffbcae547af2a214ad Mon Sep 17 00:00:00 2001 From: Onur Tirtir Date: Mon, 15 Jan 2024 11:35:07 +0300 Subject: [PATCH] Use Citus 12.1.1 instead of 12.1devel in upgrade tests --- src/test/regress/citus_tests/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/regress/citus_tests/common.py b/src/test/regress/citus_tests/common.py index 99e419267..2135a0eba 100644 --- a/src/test/regress/citus_tests/common.py +++ b/src/test/regress/citus_tests/common.py @@ -92,7 +92,7 @@ PG_MAJOR_VERSION = get_pg_major_version() OLDEST_SUPPORTED_CITUS_VERSION_MATRIX = { 14: "10.2.0", 15: "11.1.5", - 16: "12.1devel", + 16: "12.1.1", } OLDEST_SUPPORTED_CITUS_VERSION = OLDEST_SUPPORTED_CITUS_VERSION_MATRIX[PG_MAJOR_VERSION]