mirror of
https://github.com/postgres/postgres.git
synced 2025-07-02 09:02:37 +03:00
Fix loose ends for SQL ACCESS METHOD objects
COMMENT ON ACCESS METHOD was missing; add it, along psql tab-completion support for it. psql was also missing a way to list existing access methods; the new \dA command does that. Also add tab-completion support for DROP ACCESS METHOD. Author: Michael Paquier Discussion: https://www.postgresql.org/message-id/CAB7nPqTzdZdu8J7EF8SXr_R2U5bSUUYNOT3oAWBZdEoggnwhGA@mail.gmail.com
This commit is contained in:
@ -215,6 +215,7 @@ slashUsage(unsigned short int pager)
|
||||
fprintf(output, _(" \\d[S+] list tables, views, and sequences\n"));
|
||||
fprintf(output, _(" \\d[S+] NAME describe table, view, sequence, or index\n"));
|
||||
fprintf(output, _(" \\da[S] [PATTERN] list aggregates\n"));
|
||||
fprintf(output, _(" \\dA[+] [PATTERN] list access methods\n"));
|
||||
fprintf(output, _(" \\db[+] [PATTERN] list tablespaces\n"));
|
||||
fprintf(output, _(" \\dc[S+] [PATTERN] list conversions\n"));
|
||||
fprintf(output, _(" \\dC[+] [PATTERN] list casts\n"));
|
||||
|
Reference in New Issue
Block a user