From 311bcfc6b3acdd6fd152798c7f287ddf74fa2a98 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Tue, 16 Apr 2024 21:46:48 +0200 Subject: Adding upstream version 15.4. Signed-off-by: Daniel Baumann --- doc/src/sgml/html/catalog-pg-extension.html | 65 +++++++++++++++++++++++++++++ 1 file changed, 65 insertions(+) create mode 100644 doc/src/sgml/html/catalog-pg-extension.html (limited to 'doc/src/sgml/html/catalog-pg-extension.html') diff --git a/doc/src/sgml/html/catalog-pg-extension.html b/doc/src/sgml/html/catalog-pg-extension.html new file mode 100644 index 0000000..cf0f025 --- /dev/null +++ b/doc/src/sgml/html/catalog-pg-extension.html @@ -0,0 +1,65 @@ + +53.22. pg_extension

53.22. pg_extension

+ The catalog pg_extension stores information + about the installed extensions. See Section 38.17 + for details about extensions. +

Table 53.22. pg_extension Columns

+ Column Type +

+

+ Description +

+ oid oid +

+

+ Row identifier +

+ extname name +

+

+ Name of the extension +

+ extowner oid + (references pg_authid.oid) +

+

+ Owner of the extension +

+ extnamespace oid + (references pg_namespace.oid) +

+

+ Schema containing the extension's exported objects +

+ extrelocatable bool +

+

+ True if extension can be relocated to another schema +

+ extversion text +

+

+ Version name for the extension +

+ extconfig oid[] + (references pg_class.oid) +

+

+ Array of regclass OIDs for the extension's configuration + table(s), or NULL if none +

+ extcondition text[] +

+

+ Array of WHERE-clause filter conditions for the + extension's configuration table(s), or NULL if none +


+ 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. +

\ No newline at end of file -- cgit v1.2.3