summaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2018-07-14 12:17:49 +0200
committerPeter Eisentraut <peter_e@gmx.net>2018-07-24 11:38:53 +0200
commitfb421231daaa5228542ef6644cdee505fbc31dba (patch)
tree834fe490420b2ec96fb90dec9635b4ac3231f2a1 /doc/src
parent9ebe0572ceab69c57811746ead2d3418daea8673 (diff)
psql: Add option for procedures to \df
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/ref/psql-ref.sgml6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/psql-ref.sgml b/doc/src/sgml/ref/psql-ref.sgml
index b17039d60f9..eb9d93a168e 100644
--- a/doc/src/sgml/ref/psql-ref.sgml
+++ b/doc/src/sgml/ref/psql-ref.sgml
@@ -1423,16 +1423,16 @@ testdb=&gt;
<varlistentry>
- <term><literal>\df[antwS+] [ <link linkend="app-psql-patterns"><replaceable class="parameter">pattern</replaceable></link> ]</literal></term>
+ <term><literal>\df[anptwS+] [ <link linkend="app-psql-patterns"><replaceable class="parameter">pattern</replaceable></link> ]</literal></term>
<listitem>
<para>
Lists functions, together with their result data types, argument data
types, and function types, which are classified as <quote>agg</quote>
- (aggregate), <quote>normal</quote>, <quote>trigger</quote>, or <quote>window</quote>.
+ (aggregate), <quote>normal</quote>, <quote>procedure</quote>, <quote>trigger</quote>, or <quote>window</quote>.
To display only functions
of specific type(s), add the corresponding letters <literal>a</literal>,
- <literal>n</literal>, <literal>t</literal>, or <literal>w</literal> to the command.
+ <literal>n</literal>, <literal>p</literal>, <literal>t</literal>, or <literal>w</literal> to the command.
If <replaceable
class="parameter">pattern</replaceable> is specified, only
functions whose names match the pattern are shown.