From 0a9285075e1c8a61c7f2801e12d62e875427cd43 Mon Sep 17 00:00:00 2001 From: Sven Klemm Date: Fri, 19 Jan 2024 15:51:54 +0100 Subject: [PATCH] Remove reference to PG12 in cmake file --- tsl/test/isolation/specs/CMakeLists.txt | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/tsl/test/isolation/specs/CMakeLists.txt b/tsl/test/isolation/specs/CMakeLists.txt index 3eb1c3536..50c33e24d 100644 --- a/tsl/test/isolation/specs/CMakeLists.txt +++ b/tsl/test/isolation/specs/CMakeLists.txt @@ -36,11 +36,9 @@ if(CMAKE_BUILD_TYPE MATCHES Debug) list(APPEND TEST_FILES freeze_chunk.spec compression_dml_iso.spec) endif() # These tests are using markers for the isolation tests (to avoid race - # conditions causing differing output), which were added after 12.7, 13.3, and - # 14.0. - if(PG_VERSION VERSION_GREATER "12.7" - OR PG_VERSION VERSION_GREATER "13.3" - OR PG_VERSION VERSION_GREATER_EQUAL "14.0") + # conditions causing differing output), which were added after 13.3 and in all + # later major versions. + if(PG_VERSION VERSION_GREATER "13.3") list(APPEND TEST_FILES deadlock_recompress_chunk.spec) endif()