PostgreSQL 9.4.1 Documentation | |||
---|---|---|---|
Prev | Up | Chapter 58. GIN Indexes | Next |
58.3. Extensibility
TheGIN interface has a high level of abstraction, requiring the access method implementer only to implement the semantics of the data type being accessed. TheGIN layer itself takes care of concurrency, logging and searching the tree structure. All it takes to get aGIN access method working is to implement a few user-defined methods, which define the behavior of keys in the tree and the relationships between keys, indexed items, and indexable queries. In short,GIN combines extensibility with generality, code reuse, and a clean interface. There are three methods that an operator class forGIN must provide: Compares two keys (not indexed items!) and returns an integer less than zero, zero, or greater than zero, indicating whether the first key is less than, equal to, or greater than the second. Null keys are never passed to this function. Returns a palloc'd array of keys given an item to be indexed. The number of returned keys must be stored into*nkeys. If any of the keys can be null, also palloc an array of*nkeysbool fields, store its address at*nullFlags, and set these null flags as needed.*nullFlags can be leftNULL (its initial value) if all keys are non-null. The return value can beNULL if the item contains no keys. Returns a palloc'd array of keys given a value to be queried; that is,query is the value on the right-hand side of an indexable operator whose left-hand side is the indexed column.n is the strategy number of the operator within the operator class (seeSection 35.14.2). Often, searchMode is an output argument that allows pmatch is an output argument for use when partial match is supported. To use it, extra_data is an output argument that allows An operator class must also provide a function to check if an indexed item matches the query. It comes in two flavors, a boolean Optionally, an operator class forGIN can supply the following method: Compare a partial-match query key to an index key. Returns an integer whose sign indicates the result: less than zero means the index key does not match the query, but the index scan should continue; zero means that the index key does match the query; greater than zero indicates that the index scan should stop because no more matches are possible. The strategy numbern of the operator that generated the partial match query is provided, in case its semantics are needed to determine when to end the scan. Also,extra_data is the corresponding element of the extra-data array made by To support"partial match" queries, an operator class must provide the The actual data types of the variousDatum values mentioned above vary depending on the operator class. The item values passed toint compare(Datum a, Datum b)
Datum *extractValue(Datum itemValue, int32 *nkeys, bool **nullFlags)
Datum *extractQuery(Datum query, int32 *nkeys, StrategyNumber n, bool **pmatch, Pointer **extra_data, bool **nullFlags, int32 *searchMode)
extractQuery
will need to consultn to determine the data type ofquery and the method it should use to extract key values. The number of returned keys must be stored into*nkeys. If any of the keys can be null, also palloc an array of*nkeysbool fields, store its address at*nullFlags, and set these null flags as needed.*nullFlags can be leftNULL (its initial value) if all keys are non-null. The return value can beNULL if thequery contains no keys.extractQuery
to specify details about how the search will be done. If*searchMode is set toGIN_SEARCH_MODE_DEFAULT (which is the value it is initialized to before call), only items that match at least one of the returned keys are considered candidate matches. If*searchMode is set toGIN_SEARCH_MODE_INCLUDE_EMPTY, then in addition to items containing at least one matching key, items that contain no keys at all are considered candidate matches. (This mode is useful for implementing is-subset-of operators, for example.) If*searchMode is set toGIN_SEARCH_MODE_ALL, then all non-null items in the index are considered candidate matches, whether they match any of the returned keys or not. (This mode is much slower than the other two choices, since it requires scanning essentially the entire index, but it may be necessary to implement corner cases correctly. An operator that needs this mode in most cases is probably not a good candidate for a GIN operator class.) The symbols to use for setting this mode are defined inaccess/gin.h.extractQuery
must allocate an array of*nkeys booleans and store its address at*pmatch. Each element of the array should be set to TRUE if the corresponding key requires partial match, FALSE if not. If*pmatch is set toNULL then GIN assumes partial match is not required. The variable is initialized toNULL before call, so this argument can simply be ignored by operator classes that do not support partial match.extractQuery
to pass additional data to theconsistent
andcomparePartial
methods. To use it,extractQuery
must allocate an array of*nkeys Pointers and store its address at*extra_data, then store whatever it wants to into the individual pointers. The variable is initialized toNULL before call, so this argument can simply be ignored by operator classes that do not require extra data. If*extra_data is set, the whole array is passed to theconsistent
method, and the appropriate element to thecomparePartial
method.consistent
function, and a ternarytriConsistent
function.triConsistent
covers the functionality of both, so providing triConsistent alone is sufficient. However, if the boolean variant is significantly cheaper to calculate, it can be advantageous to provide both. If only the boolean variant is provided, some optimizations that depend on refuting index items before fetching all the keys are disabled.bool consistent(bool check[], StrategyNumber n, Datum query, int32 nkeys, Pointer extra_data[], bool *recheck, Datum queryKeys[], bool nullFlags[])
int comparePartial(Datum partial_key, Datum key, StrategyNumber n, Pointer extra_data)
extractQuery
, orNULL if none. Null keys are never passed to this function.comparePartial
method, and itsextractQuery
method must set thepmatch parameter when a partial-match query is encountered. SeeSection 58.4.2 for details.extractValue
are always of the operator class's input type, and all key values must be of the class'sSTORAGE type. The type of thequery argument passed toextractQuery
,consistent
andtriConsistent
is whatever is specified as the right-hand input type of the class member operator identified by the strategy number. This need not be the same as the item type, so long as key values of the correct type can be extracted from it.