diff options
author | Bruce Momjian <bruce@momjian.us> | 2009-01-19 18:44:32 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2009-01-19 18:44:32 +0000 |
commit | 2384287f6dd84892186cb599b8c84dcdbbd1b516 (patch) | |
tree | 887d9f49c527e953b03747fdff2fad2de619d17b | |
parent | cc1d292d786e593e3842db6bb5084d499c5f3383 (diff) | |
download | postgresql-2384287f6dd84892186cb599b8c84dcdbbd1b516.tar.gz postgresql-2384287f6dd84892186cb599b8c84dcdbbd1b516.zip |
Document RELKIND_SPECIAL reference in psql, from <= 8.1.X.
-rw-r--r-- | src/bin/psql/describe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index 77c77dbd4ad..1ff7513e8e7 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -8,7 +8,7 @@ * * Copyright (c) 2000-2009, PostgreSQL Global Development Group * - * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.195 2009/01/06 23:01:57 momjian Exp $ + * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.196 2009/01/19 18:44:32 momjian Exp $ */ #include "postgres_fe.h" @@ -1962,7 +1962,7 @@ listTables(const char *tabtypes, const char *pattern, bool verbose, bool showSys if (showSeq) appendPQExpBuffer(&buf, "'S',"); if (showSystem && showTables) - appendPQExpBuffer(&buf, "'s',"); + appendPQExpBuffer(&buf, "'s',"); /* was RELKIND_SPECIAL in <= 8.1.X */ appendPQExpBuffer(&buf, "''"); /* dummy */ appendPQExpBuffer(&buf, ")\n"); |