From 35f2326e8c794aa97251763e95e527d832412658 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 19 Jan 2009 18:44:32 +0000 Subject: [PATCH] Document RELKIND_SPECIAL reference in psql, from <= 8.1.X. --- src/bin/psql/describe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index 37695d37ff..2ac1cd1586 100644 --- a/src/bin/psql/describe.c +++ b/src/bin/psql/describe.c @@ -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"); -- 2.39.5