diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2011-01-25 01:51:35 +0200 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2011-01-25 01:51:35 +0200 |
commit | 77ff840835bc40693f36281ab394de881cb327eb (patch) | |
tree | f4073732513e7bf937fc9e98cd973fae14bd0cdb /src/bin/psql/help.c | |
parent | 88dcdf9007895b6703dfaf90d15244055384c603 (diff) | |
download | postgresql-77ff840835bc40693f36281ab394de881cb327eb.tar.gz postgresql-77ff840835bc40693f36281ab394de881cb327eb.zip |
Document the "S" option for psql's \dn command in the psql help
This option was recently introduced, but the documentation in help.c
was not updated.
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index bd5c4b767ba..a00038b8f87 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -212,7 +212,7 @@ slashUsage(unsigned short int pager) fprintf(output, _(" \\di[S+] [PATTERN] list indexes\n")); fprintf(output, _(" \\dl list large objects, same as \\lo_list\n")); fprintf(output, _(" \\dL[S+] [PATTERN] list procedural languages\n")); - fprintf(output, _(" \\dn[+] [PATTERN] list schemas\n")); + fprintf(output, _(" \\dn[S+] [PATTERN] list schemas\n")); fprintf(output, _(" \\do[S] [PATTERN] list operators\n")); fprintf(output, _(" \\dp [PATTERN] list table, view, and sequence access privileges\n")); fprintf(output, _(" \\drds [PATRN1 [PATRN2]] list per-database role settings\n")); |