diff options
author | Robert Haas <rhaas@postgresql.org> | 2011-01-20 00:00:30 -0500 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2011-01-20 00:00:30 -0500 |
commit | 9c5e2c120be42fbd1a743ddf539ff451e1cce23b (patch) | |
tree | f88d36b25d29bc3cd4f7204b288638a8251c3283 /src/bin/psql/help.c | |
parent | 92f7eebbbd6554f0414ab869abd8733cef751249 (diff) |
Add new psql command \dL to list languages.
Original patch by Fernando Ike, revived by Josh Kuperschmidt, reviewed by Andreas
Karlsson, and in earlier versions by Tom Lane and Peter Eisentraut.
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index 96c85a25d6c..bd5c4b767ba 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -211,6 +211,7 @@ slashUsage(unsigned short int pager) fprintf(output, _(" \\dg[+] [PATTERN] list roles\n")); 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, _(" \\do[S] [PATTERN] list operators\n")); fprintf(output, _(" \\dp [PATTERN] list table, view, and sequence access privileges\n")); |