From 736eb09b2a9f64254af4a849cad6603a4e436460 Mon Sep 17 00:00:00 2001 From: Sait Talha Nisanci Date: Wed, 25 Aug 2021 17:23:45 +0300 Subject: [PATCH] Add pg14 to a missing place in configure.in --- configure.in | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.in b/configure.in index f92b5214c..2d7588fe7 100644 --- a/configure.in +++ b/configure.in @@ -74,7 +74,7 @@ if test -z "$version_num"; then AC_MSG_ERROR([Could not detect PostgreSQL version from pg_config.]) fi -if test "$version_num" != '12' -a "$version_num" != '13'; then +if test "$version_num" != '12' -a "$version_num" != '13' -a "$version_num" != '14'; then AC_MSG_ERROR([Citus is not compatible with the detected PostgreSQL version ${version_num}.]) else AC_MSG_NOTICE([building against PostgreSQL $version_num])