Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 08317ed

Browse files
pg_basebackup streaming: adjust version check msg
Commit d298b50 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.
1 parent 3a8e9e9 commit 08317ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pg_basebackup/receivelog.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -374,7 +374,7 @@ CheckServerVersionForStreaming(PGconn *conn)
374374
fprintf(stderr, _("%s: incompatible server version %s; streaming is only supported with server version %s\n"),
375375
progname,
376376
serverver ? serverver : "'unknown'",
377-
"9.3");
377+
"9.3 or 9.4");
378378
return false;
379379
}
380380
return true;

0 commit comments

Comments
 (0)