CREATE ACCESS METHOD
CREATE ACCESS METHOD
7
SQL - Language Statements
CREATE ACCESS METHOD
define a new access method
CREATE ACCESS METHOD name
TYPE access_method_type
HANDLER handler_function
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 be created.
access_method_type
This clause specifies type of access method to define.
Only INDEX is supported at present.
HANDLER handler_function
handler_function is the
name of a previously registered function that will be called to
retrieve the struct which contains required parameters and functions
of access method to the core. The handler function must take single
argument of type internal>, and its return type depends on the
type of access method; for INDEX access methods, it
must be index_am_handler.
See for index access methods API.
Examples
Create an access method heptree> with
handler function heptree_handler>:
CREATE ACCESS METHOD heptree TYPE INDEX HANDLER heptree_handler;
Compatibility
CREATE ACCESS METHOD is a
PostgreSQL> extension.
See Also