Skip to main content

BtreeGinExtension

This class is used to install the btree_gin extension in a PostgreSQL database. It enables the use of GIN indexes for data types that typically use B-tree indexes, allowing for more efficient indexing in certain query scenarios.

Constructor

Signature

def BtreeGinExtension(
hints: list or null = None
) - > null

Parameters

NameTypeDescription
hintslist or null = NoneOptional hints or configuration parameters for the extension creation.

Signature

def BtreeGinExtension(
hints: list[str] = null
) - > null

Parameters

NameTypeDescription
hintslist[str] = nullA list of strings providing additional context or suggestions for the extension creation process.