*** pgsql/src/bin/psql/describe.c 2009/01/06 23:01:57 1.195 --- pgsql/src/bin/psql/describe.c 2009/01/19 18:44:32 1.196 *************** *** 8,14 **** * * Copyright (c) 2000-2009, PostgreSQL Global Development Group * ! * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.194 2009/01/06 21:10:30 momjian Exp $ */ #include "postgres_fe.h" --- 8,14 ---- * * 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 $ */ #include "postgres_fe.h" *************** listTables(const char *tabtypes, const c *** 1962,1968 **** if (showSeq) appendPQExpBuffer(&buf, "'S',"); if (showSystem && showTables) ! appendPQExpBuffer(&buf, "'s',"); appendPQExpBuffer(&buf, "''"); /* dummy */ appendPQExpBuffer(&buf, ")\n"); --- 1962,1968 ---- if (showSeq) appendPQExpBuffer(&buf, "'S',"); if (showSystem && showTables) ! appendPQExpBuffer(&buf, "'s',"); /* was RELKIND_SPECIAL in <= 8.1.X */ appendPQExpBuffer(&buf, "''"); /* dummy */ appendPQExpBuffer(&buf, ")\n");