summaryrefslogtreecommitdiff
path: root/src/bin/psql/command.c
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:39:03 +0200
commit07055a2c8cbfb772d3c7c114cfe12dddae0f90fe (patch)
treefe7c87aaf20b3a5f63af5df77df3571649f882ee /src/bin/psql/command.c
parent9915735ebbc5c5362f5834f6ad7b86394ded4a85 (diff)
psql: Add option for procedures to \df
Diffstat (limited to 'src/bin/psql/command.c')
-rw-r--r--src/bin/psql/command.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c
index 4c85f43f09e..f82f361fd84 100644
--- a/src/bin/psql/command.c
+++ b/src/bin/psql/command.c
@@ -754,6 +754,7 @@ exec_command_d(PsqlScanState scan_state, bool active_branch, const char *cmd)
case 'S':
case 'a':
case 'n':
+ case 'p':
case 't':
case 'w':
success = describeFunctions(&cmd[2], pattern, show_verbose, show_system);