|
8 | 8 | * |
9 | 9 | * Copyright (c) 2000-2009, PostgreSQL Global Development Group |
10 | 10 | * |
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 $ |
12 | 12 | */ |
13 | 13 | #include"postgres_fe.h" |
14 | 14 |
|
@@ -1962,7 +1962,7 @@ listTables(const char *tabtypes, const char *pattern, bool verbose, bool showSys |
1962 | 1962 | if (showSeq) |
1963 | 1963 | appendPQExpBuffer(&buf,"'S',"); |
1964 | 1964 | if (showSystem&&showTables) |
1965 | | -appendPQExpBuffer(&buf,"'s',"); |
| 1965 | +appendPQExpBuffer(&buf,"'s',");/* was RELKIND_SPECIAL in <= 8.1.X */ |
1966 | 1966 | appendPQExpBuffer(&buf,"''");/* dummy */ |
1967 | 1967 | appendPQExpBuffer(&buf,")\n"); |
1968 | 1968 |
|
|