From a670c24c382693c4f75e99c9292b2ed0f0d40a72 Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Mon, 11 Jul 2016 12:35:03 -0400 Subject: 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: --- doc/src/sgml/ref/psql-ref.sgml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'doc/src') 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=> - Lists functions, together with their arguments, return types, and - function types, which are classified as agg (aggregate), - normal, trigger, or window. + Lists functions, together with their result data types, argument data + types, and function types, which are classified as agg + (aggregate), normal, trigger, or window. To display only functions of specific type(s), add the corresponding letters a, n, t, or w to the command. @@ -1380,14 +1380,15 @@ testdb=> objects are shown; supply a pattern or the S modifier to include system objects. If the form \df+ 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. 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 \df output. -- cgit v1.2.3