aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Paquier <michael@paquier.xyz>2019-09-11 15:17:35 +0900
committerMichael Paquier <michael@paquier.xyz>2019-09-11 15:17:35 +0900
commit8a0deae8d9b6861265cf4ebf25a9e4385f4c7672 (patch)
treecf7316645137416a34ec17accc6ee707e566b8ef
parent9d6e1ec5ceed1b7871fc2afd68898f0e876b60b9 (diff)
downloadpostgresql-8a0deae8d9b6861265cf4ebf25a9e4385f4c7672.tar.gz
postgresql-8a0deae8d9b6861265cf4ebf25a9e4385f4c7672.zip
Fix comment in psql's describe.c
Procedures are supported since v11 and \dfp can be used since this version, but it was not mentioned as a supported option in the description of describeFunctions() which handles \df in psql. Extracted from a larger patch. Author: Fabien Coelho Discussion: https://postgr.es/m/alpine.DEB.2.21.1908281618520.28828@lancre
-rw-r--r--src/bin/psql/describe.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/bin/psql/describe.c b/src/bin/psql/describe.c
index 774cc764ff8..d7c0fc0c1e7 100644
--- a/src/bin/psql/describe.c
+++ b/src/bin/psql/describe.c
@@ -307,6 +307,7 @@ describeTablespaces(const char *pattern, bool verbose)
*
* a for aggregates
* n for normal
+ * p for procedure
* t for trigger
* w for window
*