From: Tom Lane Date: Sat, 4 Apr 2009 00:44:30 +0000 (+0000) Subject: Improve obsolete comment. X-Git-Tag: REL8_4_BETA1~56 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=591f2944de633f201d97b7b17659569cd5b29d96;p=postgresql Improve obsolete comment. --- diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index c78bd6f39e..df59999d20 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.206 2009/04/04 00:41:11 tgl Exp $ + * $PostgreSQL: pgsql/src/bin/psql/describe.c,v 1.207 2009/04/04 00:44:30 tgl Exp $ */ #include "postgres_fe.h" @@ -1944,15 +1944,15 @@ add_role_attribute(PQExpBuffer buf, const char *const str) /* * listTables() * - * handler for \d, \dt, etc. + * handler for \dt, \di, etc. * * tabtypes is an array of characters, specifying what info is desired: * t - tables * i - indexes * v - views * s - sequences - * S - system tables (pg_catalog) * (any order of the above is fine) + * If tabtypes is empty, we default to \dtvs. */ bool listTables(const char *tabtypes, const char *pattern, bool verbose, bool showSystem)