diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2009-04-04 00:44:30 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2009-04-04 00:44:30 +0000 |
commit | 591f2944de633f201d97b7b17659569cd5b29d96 (patch) | |
tree | 3f8c0b0da4a5f6c3e01506a02dda61eb1b5fa344 /src | |
parent | 81fc5df83e9803443d3f31e5e810fbef63864452 (diff) | |
download | postgresql-591f2944de633f201d97b7b17659569cd5b29d96.tar.gz postgresql-591f2944de633f201d97b7b17659569cd5b29d96.zip |
Improve obsolete comment.
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/psql/describe.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c index c78bd6f39ee..df59999d200 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) |