From 5e45211a64149b3c659b90ff2de6fa982a5a93ed Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 14:17:33 +0200 Subject: Adding upstream version 15.5. Signed-off-by: Daniel Baumann --- doc/src/sgml/html/sql-create-access-method.html | 39 +++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 doc/src/sgml/html/sql-create-access-method.html (limited to 'doc/src/sgml/html/sql-create-access-method.html') diff --git a/doc/src/sgml/html/sql-create-access-method.html b/doc/src/sgml/html/sql-create-access-method.html new file mode 100644 index 0000000..18f82b5 --- /dev/null +++ b/doc/src/sgml/html/sql-create-access-method.html @@ -0,0 +1,39 @@ + +CREATE ACCESS METHOD

CREATE ACCESS METHOD

CREATE ACCESS METHOD — define a new access method

Synopsis

+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 the type of access method to define. + Only TABLE and INDEX + 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; + for TABLE access methods, it must + be table_am_handler and for INDEX + access methods, it must be index_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 Chapter 63 and the index access method + API is described in Chapter 64. +

Examples

+ Create an index 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. +

\ No newline at end of file -- cgit v1.2.3