]> begriffs open source - ai-pg/blob - full-docs/txt/catalog-pg-extension.txt
Convert HTML docs to more streamlined TXT
[ai-pg] / full-docs / txt / catalog-pg-extension.txt
1
2 52.22. pg_extension #
3
4    The catalog pg_extension stores information about the installed
5    extensions. See Section 36.17 for details about extensions.
6
7    Table 52.22. pg_extension Columns
8
9    Column Type
10
11    Description
12
13    oid oid
14
15    Row identifier
16
17    extname name
18
19    Name of the extension
20
21    extowner oid (references pg_authid.oid)
22
23    Owner of the extension
24
25    extnamespace oid (references pg_namespace.oid)
26
27    Schema containing the extension's exported objects
28
29    extrelocatable bool
30
31    True if extension can be relocated to another schema
32
33    extversion text
34
35    Version name for the extension
36
37    extconfig oid[] (references pg_class.oid)
38
39    Array of regclass OIDs for the extension's configuration table(s), or
40    NULL if none
41
42    extcondition text[]
43
44    Array of WHERE-clause filter conditions for the extension's
45    configuration table(s), or NULL if none
46
47    Note that unlike most catalogs with a “namespace” column, extnamespace
48    is not meant to imply that the extension belongs to that schema.
49    Extension names are never schema-qualified. Rather, extnamespace
50    indicates the schema that contains most or all of the extension's
51    objects. If extrelocatable is true, then this schema must in fact
52    contain all schema-qualifiable objects belonging to the extension.