diff options
author | Peter Eisentraut | 2020-06-04 20:09:41 +0000 |
---|---|---|
committer | Peter Eisentraut | 2020-06-04 20:09:41 +0000 |
commit | f5067049cde38cd0d6333a5e3bf1bed8d99e6f44 (patch) | |
tree | 0f81126b2ef6b126bc52a4fcdbfe4a120bbccc65 /src/bin/psql/help.c | |
parent | 3fa44a30049826bfe2fd58eec0e8acabd5757411 (diff) |
psql: Clean up terminology in \dAp command
The preferred terminology has been support "function", not procedure,
for some time, so change that over. The command stays \dAp, since
\dAf is already something else.
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 e7509480429..00992f96a0a 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -231,7 +231,7 @@ slashUsage(unsigned short int pager) fprintf(output, _(" \\dAc[+] [AMPTRN [TYPEPTRN]] list operator classes\n")); fprintf(output, _(" \\dAf[+] [AMPTRN [TYPEPTRN]] list operator families\n")); fprintf(output, _(" \\dAo[+] [AMPTRN [OPFPTRN]] list operators of operator families\n")); - fprintf(output, _(" \\dAp [AMPTRN [OPFPTRN]] list procedures of operator families\n")); + fprintf(output, _(" \\dAp [AMPTRN [OPFPTRN]] list support functions of operator families\n")); fprintf(output, _(" \\db[+] [PATTERN] list tablespaces\n")); fprintf(output, _(" \\dc[S+] [PATTERN] list conversions\n")); fprintf(output, _(" \\dC[+] [PATTERN] list casts\n")); |