aboutsummaryrefslogtreecommitdiff
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:38:53 +0200
commitfb421231daaa5228542ef6644cdee505fbc31dba (patch)
tree834fe490420b2ec96fb90dec9635b4ac3231f2a1 /src/bin/psql/command.c
parent9ebe0572ceab69c57811746ead2d3418daea8673 (diff)
downloadpostgresql-fb421231daaa5228542ef6644cdee505fbc31dba.tar.gz
postgresql-fb421231daaa5228542ef6644cdee505fbc31dba.zip
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);