pg_basebackup streaming: adjust version check msg

Commit d298b50a3b by Heikki Linnakangas
requested that the version check message be updated at next release, suggesting
that the appropriate text would be “9.3 or later”. The logic used for the check
indicates that the correct text for 9.4 is “9.3 or 9.4”, since the logic would
cause this to fail for later releases.
This commit is contained in:
Simon Riggs 2014-05-06 13:44:15 +01:00
parent 3a8e9e977f
commit 08317edc2d
1 changed files with 1 additions and 1 deletions

View File

@ -374,7 +374,7 @@ CheckServerVersionForStreaming(PGconn *conn)
fprintf(stderr, _("%s: incompatible server version %s; streaming is only supported with server version %s\n"),
progname,
serverver ? serverver : "'unknown'",
"9.3");
"9.3 or 9.4");
return false;
}
return true;