mirror of
https://github.com/postgres/postgres.git
synced 2025-07-28 23:42:10 +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:
@ -5,6 +5,7 @@ LANGUAGE C;
|
||||
|
||||
-- Access method
|
||||
CREATE ACCESS METHOD bloom TYPE INDEX HANDLER blhandler;
|
||||
COMMENT ON ACCESS METHOD bloom IS 'bloom index access method';
|
||||
|
||||
-- Opclasses
|
||||
|
||||
|
Reference in New Issue
Block a user