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

Commit 2384287

Browse files
committed
Document RELKIND_SPECIAL reference in psql, from <= 8.1.X.
1 parent cc1d292 commit 2384287

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/bin/psql/describe.c

Lines changed: 2 additions & 2 deletions
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.195 2009/01/06 23:01:57 momjian Exp $
11+
* $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.196 2009/01/19 18:44:32 momjian Exp $
1212
*/
1313
#include "postgres_fe.h"
1414

@@ -1962,7 +1962,7 @@ listTables(const char *tabtypes, const char *pattern, bool verbose, bool showSys
19621962
if (showSeq)
19631963
appendPQExpBuffer(&buf, "'S',");
19641964
if (showSystem && showTables)
1965-
appendPQExpBuffer(&buf, "'s',");
1965+
appendPQExpBuffer(&buf, "'s',"); /* was RELKIND_SPECIAL in <= 8.1.X */
19661966
appendPQExpBuffer(&buf, "''"); /* dummy */
19671967
appendPQExpBuffer(&buf, ")\n");
19681968

0 commit comments

Comments
 (0)