52.22. pg_extension
pg_extension
The catalog pg_extension stores information about the installed extensions. See Packaging Related Objects into an Extension for details about extensions.
Column Type Description |
|---|
oid Row identifier |
extname Name of the extension |
extowner Owner of the extension |
extnamespace Schema containing the extension's exported objects |
extrelocatable True if extension can be relocated to another schema |
extversion Version name for the extension |
extconfig Array of |
extcondition Array of |
: pg_extension Columns
Note that unlike most catalogs with a "namespace" column, extnamespace is not meant to imply that the extension belongs to that schema. Extension names are never schema-qualified. Rather, extnamespace indicates the schema that contains most or all of the extension's objects. If extrelocatable is true, then this schema must in fact contain all schema-qualifiable objects belonging to the extension.