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

Commit 5e29862

Browse files
committed
Clarify error message
1 parent cb10e3a commit 5e29862

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/psql/describe.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*
99
* Copyright (c) 2000-2009, PostgreSQL Global Development Group
1010
*
11-
* $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.214 2009/06/04 19:17:39 tgl Exp $
11+
* $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.215 2009/06/10 21:51:56 petere Exp $
1212
*/
1313
#include "postgres_fe.h"
1414

@@ -215,7 +215,7 @@ describeFunctions(const char *functypes, const char *pattern, bool verbose, bool
215215

216216
if (showWindow && pset.sversion < 80400)
217217
{
218-
fprintf(stderr, _("\\df does not take a \"w\" option in %d.%d.\n"),
218+
fprintf(stderr, _("\\df does not take a \"w\" option with server version %d.%d\n"),
219219
pset.sversion / 10000, (pset.sversion / 100) % 100);
220220
return true;
221221
}

0 commit comments

Comments
 (0)