From 040b1ae4e356d6c191792dbe7197ceaa93de66ae Mon Sep 17 00:00:00 2001 From: Ian Barwick Date: Tue, 17 Nov 2020 09:39:41 +0900 Subject: [PATCH] Update corner-case error message Not possible to build repmgr compatible with Pg12+ against Pg11 and earlier due to the addition of FullTransactionId. --- controldata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controldata.c b/controldata.c index a5251c70..79f794ea 100644 --- a/controldata.c +++ b/controldata.c @@ -333,7 +333,7 @@ get_controlfile(const char *DataDir) control_file_info->minRecoveryPointTLI = ptr->minRecoveryPointTLI; control_file_info->minRecoveryPoint = ptr->minRecoveryPoint; #else - fprintf(stderr, "ERROR: please use a repmgr version built for PostgreSQL 12\n"); + fprintf(stderr, "ERROR: please use a repmgr version built for PostgreSQL 12 or later\n"); exit(ERR_BAD_CONFIG); #endif }