バージョンごとのドキュメント一覧

54.3. pg_available_extension_versions #

The <structname>pg_available_extension_versions</structname> view lists the specific extension versions that are available for installation. See also the <link linkend="catalog-pg-extension"><structname>pg_extension</structname></link> catalog, which shows the extensions currently installed. pg_available_extension_versionsビューはインストレーションで利用可能な特定の拡張のバージョンを列挙します。 現在インストールされている拡張を表すpg_extensionカタログも参照してください。

表54.3 pg_available_extension_versionsの列

<title><structname>pg_available_extension_versions</structname> Columns</title>

Column Type 列 型

Description 説明

name name

Extension name 拡張名

version text

Version name バージョン名称

installed bool

True if this version of this extension is currently installed trueの場合は、現在このバージョンの拡張がインストールされている

superuser bool

True if only superusers are allowed to install this extension (but see <structfield>trusted</structfield>) trueの場合は、スーパーユーザがこの拡張をインストールできる(ただし、trustedを見てください)

trusted bool

True if the extension can be installed by non-superusers with appropriate privileges trueの場合は、適切な権限を持つ非スーパーユーザがこの拡張をインストールできる

relocatable bool

True if extension can be relocated to another schema trueの場合は、拡張が他のスキーマに再配置可能である

schema name

Name of the schema that the extension must be installed into, or <literal>NULL</literal> if partially or fully relocatable 拡張がインストールされなければならないスキーマの名前。 一部の再配置またはすべての再配置を行うことができる場合はNULL

requires name[]

Names of prerequisite extensions, or <literal>NULL</literal> if none 前もって必要な拡張の名前。なければNULL

comment text

Comment string from the extension's control file 拡張の制御ファイルからのコメント文字列


The <structname>pg_available_extension_versions</structname> view is read-only. pg_available_extension_versionsビューは読み取り専用です。