diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2002-09-22 20:44:22 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2002-09-22 20:44:22 +0000 |
commit | 286fb25243724d0b4bdb4ed06af250f34779db4a (patch) | |
tree | 41d25f299e761a3894ef9460f183be6b95ee28a1 /doc/src | |
parent | fce573ae16b677479d94e6779ab194f0f5783c5c (diff) | |
download | postgresql-286fb25243724d0b4bdb4ed06af250f34779db4a.tar.gz postgresql-286fb25243724d0b4bdb4ed06af250f34779db4a.zip |
Make \dS work more like it used to, viz, show only system objects.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/psql-ref.sgml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index e10cdd9aa16..e2cec12ad29 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -1,5 +1,5 @@ <!-- -$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.76 2002/09/21 18:32:54 petere Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/psql-ref.sgml,v 1.77 2002/09/22 20:44:22 tgl Exp $ PostgreSQL documentation --> @@ -884,7 +884,9 @@ testdb=> This is not the actual command name: the letters i, s, t, v, S stand for index, sequence, table, view, and system table, respectively. You can specify any or all of these letters, in any - order, to obtain a listing of all the matching objects. + order, to obtain a listing of all the matching objects. The letter + S restricts the listing to system objects; without S, only non-system + objects are shown. If <quote>+</quote> is appended to the command name, each object is listed with its associated description, if any. </para> |