Defines a new access method.
Synopsis
Description
CREATE ACCESS METHOD
creates a new access method.
The access method name must be unique within the database.
Only superusers can define new access methods.
Parameters
- name
- The name of the access method to create.
- access_method_type
- The type of access method to define. Only
TABLE
andINDEX
types are supported at present. - handler_function
- handler_function is the name (possibly schema-qualified) of a previously registered function that represents the access method. The handler function must be declared to take a single argument of type
internal
, and its return type depends on the type of access method; forTABLE
access methods, it must betable_am_handler
and forINDEX
access methods, it must beindex_am_handler
. The C-level API that the handler function must implement varies depending on the type of access method. The table access method API is described in Table Access Method Interface Definition in the PostgreSQL documentation. The index access method API is described in Index Access Method Interface Definition.
Examples
Create an index access method heptree
with handler function heptree_handler
:
Compatibility
CREATE ACCESS METHOD
is a Greenplum Database extension.
See Also
DROP ACCESS METHOD, CREATE OPERATOR CLASS, CREATE OPERATOR FAMILY
Parent topic: SQL Commands
Content feedback and comments