Commit 08317edc authored by Simon Riggs's avatar Simon Riggs

pg_basebackup streaming: adjust version check msg

Commit d298b50a 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.
parent 3a8e9e97
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment