diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2016-07-11 12:35:03 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2016-07-11 12:35:08 -0400 |
commit | a670c24c382693c4f75e99c9292b2ed0f0d40a72 (patch) | |
tree | 60d12835d23b84ca365e1be4d000aaf335cf0024 /doc/src | |
parent | 740bf396a1d5cc41a8398076a9de1485c497c49c (diff) | |
download | postgresql-a670c24c382693c4f75e99c9292b2ed0f0d40a72.tar.gz postgresql-a670c24c382693c4f75e99c9292b2ed0f0d40a72.zip |
Improve output of psql's \df+ command.
Add display of proparallel (parallel-safety) when the server is >= 9.6,
and display of proacl (access privileges) for all server versions.
Minor tweak of column ordering to keep related columns together.
Michael Paquier
Discussion: <CAB7nPqTR3Vu3xKOZOYqSm-+bSZV0kqgeGAXD6w5GLbkbfd5Q6w@mail.gmail.com>
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/psql-ref.sgml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml index aeffd63960f..ee525f5833c 100644 --- a/doc/src/sgml/ref/psql-ref.sgml +++ b/doc/src/sgml/ref/psql-ref.sgml @@ -1367,9 +1367,9 @@ testdb=> <listitem> <para> - Lists functions, together with their arguments, return types, and - function types, which are classified as <quote>agg</> (aggregate), - <quote>normal</>, <quote>trigger</>, or <quote>window</>. + Lists functions, together with their result data types, argument data + types, and function types, which are classified as <quote>agg</> + (aggregate), <quote>normal</>, <quote>trigger</>, or <quote>window</>. To display only functions of specific type(s), add the corresponding letters <literal>a</>, <literal>n</>, <literal>t</>, or <literal>w</> to the command. @@ -1380,14 +1380,15 @@ testdb=> objects are shown; supply a pattern or the <literal>S</literal> modifier to include system objects. If the form <literal>\df+</literal> is used, additional information - about each function is shown, including security classification, - volatility, owner, language, source code and description. + about each function is shown, including volatility, + parallel safety, owner, security classification, access privileges, + language, source code and description. </para> <tip> <para> To look up functions taking arguments or returning values of a specific - type, use your pager's search capability to scroll through the + data type, use your pager's search capability to scroll through the <literal>\df</> output. </para> </tip> |