From: Tom Lane Date: Sat, 4 Apr 2009 00:39:14 +0000 (+0000) Subject: Minor wordsmithing on descriptions of some \d commands. X-Git-Tag: REL8_4_BETA1~58 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=dbca713cea2370514dd55807ef471ee9308ef017;p=postgresql Minor wordsmithing on descriptions of some \d commands. --- diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index f2ffa503a4..05c35904ef 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -1,5 +1,5 @@ @@ -853,6 +853,9 @@ testdb=> more information is displayed: any comments associated with the columns of the table are shown, as is the presence of OIDs in the table. + + + By default, only user-created objects are shown; supply a pattern or the S modifier to include system objects. @@ -942,9 +945,9 @@ testdb=> By default, only user-created objects are shown; supply a pattern or the S modifier to include system objects. - (Object covers aggregates, functions, operators, - types, relations (tables, views, indexes, sequences, large - objects), rules, and triggers.) For example: + Object covers aggregates, functions, operators, + types, relations (tables, views, indexes, sequences), large + objects, rules, and triggers. For example: => \dd version Object descriptions @@ -1184,7 +1187,7 @@ testdb=> - Lists all available schemas (namespaces). If pattern (a regular expression) is specified, only schemas whose names match the pattern are listed. Non-local temporary schemas are suppressed. If + @@ -1214,7 +1217,7 @@ testdb=> \dp [ pattern ] - Produces a list of all available tables, views and sequences with their + Lists available tables, views and sequences with their associated access privileges. If pattern is specified, only tables, views and sequences whose names match the pattern are listed. @@ -1233,10 +1236,12 @@ testdb=> \dT[S+] [ pattern ] - Lists all data types or only those that match pattern. The command form - \dT+ shows extra information, namely the type's internal name, size, and - allowed values for enum types. + Lists available data types. + If pattern is + specified, only types whose names match the pattern are listed. + If + is appended to the command name, each type is + listed with its internal name and size, as well as its allowed values + if it is an enum type. By default, only user-created objects are shown; supply a pattern or the S modifier to include system objects. @@ -1249,8 +1254,9 @@ testdb=> \du [ pattern ] - Lists all database roles, or only those that match pattern. + Lists all database roles. If pattern is specified, only + those roles whose names match the pattern are listed.