diff options
author | Nathan Bossart | 2023-06-29 04:32:53 +0000 |
---|---|---|
committer | Nathan Bossart | 2023-06-29 04:32:53 +0000 |
commit | dda9f8e7bc2e1e5cc6c77b86ce54786e9df8e0c6 (patch) | |
tree | b9479bff9eef8ae0262eee0e8246940257d2aa49 | |
parent | bc8e9a6a25e1674d49b977c1d3fc80e7c22f5b30 (diff) |
Fix psql \?'s entries for \dp and \z.
d913928c9c added support for the "S" modifier to psql's \dp and \z
meta-commands, but it missed updating the corresponding entries in
\?'s output.
Author: Noriyoshi Shinoda
Discussion: https://postgr.es/m/DM4PR84MB17342A51B3A1556CFBC7A4B2EE25A%40DM4PR84MB1734.NAMPRD84.PROD.OUTLOOK.COM
-rw-r--r-- | src/bin/psql/help.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index c6478ed559..0ff595e7ee 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -277,7 +277,7 @@ slashUsage(unsigned short int pager) HELP0(" \\do[S+] [OPPTRN [TYPEPTRN [TYPEPTRN]]]\n" " list operators\n"); HELP0(" \\dO[S+] [PATTERN] list collations\n"); - HELP0(" \\dp [PATTERN] list table, view, and sequence access privileges\n"); + HELP0(" \\dp[S] [PATTERN] list table, view, and sequence access privileges\n"); HELP0(" \\dP[itn+] [PATTERN] list [only index/table] partitioned relations [n=nested]\n"); HELP0(" \\drds [ROLEPTRN [DBPTRN]] list per-database role settings\n"); HELP0(" \\dRp[+] [PATTERN] list replication publications\n"); @@ -293,7 +293,7 @@ slashUsage(unsigned short int pager) HELP0(" \\l[+] [PATTERN] list databases\n"); HELP0(" \\sf[+] FUNCNAME show a function's definition\n"); HELP0(" \\sv[+] VIEWNAME show a view's definition\n"); - HELP0(" \\z [PATTERN] same as \\dp\n"); + HELP0(" \\z[S] [PATTERN] same as \\dp\n"); HELP0("\n"); HELP0("Large Objects\n"); |