pg_extension

The system catalog table pg_extension stores information about installed extensions.

columntypereferencesdescription
extnamename Name of the extension.
extowneroidpg_authid.oidOwner of the extension
extnamespaceoidpg_namespace.oidSchema containing the extension exported objects.
extrelocatableboolean True if the extension can be relocated to another schema.
extversiontext Version name for the extension.
extconfigoid[]pg_class.oidArray of regclass OIDs for the extension configuration tables, or NULL if none.
extconditiontext[] Array of WHERE-clause filter conditions for the extension configuration tables, or NULL if none.

Unlike most catalogs with a namespace column, extnamespace does not imply that the extension belongs to that schema. Extension names are never schema-qualified. The extnamespace schema indicates the schema that contains most or all of the extension objects. If extrelocatable is true, then this schema must contain all schema-qualifiable objects that belong to the extension.

Parent topic: System Catalogs Definitions