]> begriffs open source - ai-pg/blob - full-docs/txt/view-pg-available-extension-versions.txt
Convert HTML docs to more streamlined TXT
[ai-pg] / full-docs / txt / view-pg-available-extension-versions.txt
1
2 53.4. pg_available_extension_versions #
3
4    The pg_available_extension_versions view lists the specific extension
5    versions that are available for installation. See also the pg_extension
6    catalog, which shows the extensions currently installed.
7
8    Table 53.4. pg_available_extension_versions Columns
9
10    Column Type
11
12    Description
13
14    name name
15
16    Extension name
17
18    version text
19
20    Version name
21
22    installed bool
23
24    True if this version of this extension is currently installed
25
26    superuser bool
27
28    True if only superusers are allowed to install this extension (but see
29    trusted)
30
31    trusted bool
32
33    True if the extension can be installed by non-superusers with
34    appropriate privileges
35
36    relocatable bool
37
38    True if extension can be relocated to another schema
39
40    schema name
41
42    Name of the schema that the extension must be installed into, or NULL
43    if partially or fully relocatable
44
45    requires name[]
46
47    Names of prerequisite extensions, or NULL if none
48
49    comment text
50
51    Comment string from the extension's control file
52
53    The pg_available_extension_versions view is read-only.