diff options
author | Tomas Vondra | 2021-01-17 14:11:14 +0000 |
---|---|---|
committer | Tomas Vondra | 2021-01-17 14:11:14 +0000 |
commit | 1db0d173a2201119f297ea35edfb41579893dd8c (patch) | |
tree | b24b99ca9c37fac89c5d3a29522b8a66ffdb0e52 /src/bin/psql/help.c | |
parent | e09155bd62f0ac5817cb3d736eb35adf4200549e (diff) |
Revert "psql \dX: list extended statistics objects"
Reverts 891a1d0bca, because the new psql command \dX only worked for
users users who can read pg_statistic_ext_data catalog, and most regular
users lack that privilege (the catalog may contain sensitive user data).
Reported-by: Noriyoshi Shinoda
Discussion: https://postgr.es/m/c027a541-5856-75a5-0868-341301e1624b%40nttcom.co.jp_1
Diffstat (limited to 'src/bin/psql/help.c')
-rw-r--r-- | src/bin/psql/help.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/bin/psql/help.c b/src/bin/psql/help.c index e42bc8c54e0..9ec1c4e810c 100644 --- a/src/bin/psql/help.c +++ b/src/bin/psql/help.c @@ -267,7 +267,6 @@ slashUsage(unsigned short int pager) fprintf(output, _(" \\du[S+] [PATTERN] list roles\n")); fprintf(output, _(" \\dv[S+] [PATTERN] list views\n")); fprintf(output, _(" \\dx[+] [PATTERN] list extensions\n")); - fprintf(output, _(" \\dX[+] [PATTERN] list extended statistics\n")); fprintf(output, _(" \\dy [PATTERN] list event triggers\n")); fprintf(output, _(" \\l[+] [PATTERN] list databases\n")); fprintf(output, _(" \\sf[+] FUNCNAME show a function's definition\n")); |