mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
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>
This commit is contained in:
@ -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>
|
||||
|
Reference in New Issue
Block a user