The functions described in this section are used to obtain various information about a <productname>PostgreSQL</productname> installation. 本節で説明する関数は、PostgreSQLのインストレーションに関するさまざまな情報を取得するために使用されます。
<xref linkend="functions-info-session-table"/> shows several functions that extract session and system information. 表 9.69に、セッションおよびシステムの情報を抽出する関数を示します。
In addition to the functions listed in this section, there are a number of functions related to the statistics system that also provide system information. See <xref linkend="monitoring-stats-functions"/> for more information. 本節で列挙されている関数のほかに、同様にシステム情報を提供する統計システムに関連した数多くの関数があります。 27.2.26にさらに情報があります。
表9.69 セッション情報関数
Function 関数 Description 説明 |
---|
Returns the name of the current database. (Databases are
called <quote>catalogs</quote> in the SQL standard,
so <function>current_catalog</function> is the standard's
spelling.)
現在のデータベースの名前を返します。
(データベースはSQL標準では「カタログ」と呼ばれています。ですから標準での記述は |
Returns the text of the currently executing query, as submitted by the client (which might contain more than one statement). クライアントから送信された現在実行中問い合わせのテキスト(複数の文を含むことあります)を返します。 |
This is equivalent to <function>current_user</function>.
|
Returns the name of the schema that is first in the search path (or a null value if the search path is empty). This is the schema that will be used for any tables or other named objects that are created without specifying a target schema. 検索パスの先頭にあるスキーマの名前を返します。(検索パスが空ならNULL値を返します。) これはターゲットスキーマを指定せずに作成されるすべてのテーブルあるいは名前付きのオブジェクトで使われるスキーマです。 |
Returns an array of the names of all schemas presently in the
effective search path, in their priority order. (Items in the current
<xref linkend="guc-search-path"/> setting that do not correspond to
existing, searchable schemas are omitted.) If the Boolean argument
is <literal>true</literal>, then implicitly-searched system schemas
such as <literal>pg_catalog</literal> are included in the result.
現在有効な検索パス中にあるすべてのスキーマの名前を優先順に配列で返します。
(現在のsearch_path設定にある項目で、存在する検索可能なスキーマに関連しないものは無視されます。)
論理値引数が |
Returns the user name of the current execution context. 現在の実行コンテキストのユーザ名を返します。 |
Returns the IP address of the current client,
or <literal>NULL</literal> if the current connection is via a
Unix-domain socket.
現在のクライアントのIPアドレスを返します。UNIXドメインソケット経由の接続なら |
Returns the IP port number of the current client,
or <literal>NULL</literal> if the current connection is via a
Unix-domain socket.
現在のクライアントのIPポート番号を返します。UNIXドメインソケット経由の接続なら |
Returns the IP address on which the server accepted the current
connection,
or <literal>NULL</literal> if the current connection is via a
Unix-domain socket.
サーバが受け付けている現在の接続のIPアドレスを返します。UNIXドメインソケット経由の接続なら |
Returns the IP port number on which the server accepted the current
connection,
or <literal>NULL</literal> if the current connection is via a
Unix-domain socket.
サーバが受け付けている現在の接続のIPポート番号を返します。UNIXドメインソケット経由の接続なら |
Returns the process ID of the server process attached to the current session. 現在のセッションに結びついているサーバプロセスのプロセスIDを返します。 |
Returns an array of the process ID(s) of the sessions that are blocking the server process with the specified process ID from acquiring a lock, or an empty array if there is no such server process or it is not blocked. 指定したサーバプロセスIDによるロック取得をブロックしているプロセスIDを配列で返します。そのようなサーバプロセスが存在しないかあるいはブロックしていない場合は空の配列が返ります。
One server process blocks another if it either holds a lock that
conflicts with the blocked process's lock request (hard block), or is
waiting for a lock that would conflict with the blocked process's lock
request and is ahead of it in the wait queue (soft block). When using
parallel queries the result always lists client-visible process IDs
(that is, <function>pg_backend_pid</function> results) even if the
actual lock is held or awaited by a child worker process. As a result
of that, there may be duplicated PIDs in the result. Also note that
when a prepared transaction holds a conflicting lock, it will be
represented by a zero process ID.
あるサーバプロセスが別のサーバプロセスをブロックするのは、ブロックされるプロセスのロック要求と競合するロックを保持している場合(ハードブロック)、あるいは、ブロックされるプロセスのロック要求と競合するロックを待っていて、かつロック待ちキュー内でより前方にいる場合(ソフトブロック)です。
パラレルクエリを使っている場合、実際のロックを子ワーカープロセスが保持または待っている場合であっても、この結果には必ずクライアントから可視のプロセスID(つまり、 Frequent calls to this function could have some impact on database performance, because it needs exclusive access to the lock manager's shared state for a short time. 頻繁にこの関数を呼び出すとデータベースの性能に影響があるかも知れません。ロックマネージャの共有状態への短期的な排他ロックの取得が必要だからです。 |
Returns the time when the server configuration files were last loaded. If the current session was alive at the time, this will be the time when the session itself re-read the configuration files (so the reading will vary a little in different sessions). Otherwise it is the time when the postmaster process re-read the configuration files. サーバ設定ファイルが最後に読み込まれた時の時刻を返します。 現在のセッションがそのときに活動中だった場合、これはそのセッション自身が設定ファイルを再読み込みした時刻になります。(ですからその結果はセッションによって少し異なるかもしれません。) それ以外の場合は、postmasterプロセスが設定ファイルを再読み込みした時刻になります。 |
Returns the path name of the log file currently in use by the logging
collector. The path includes the <xref linkend="guc-log-directory"/>
directory and the individual log file name. The result
is <literal>NULL</literal> if the logging collector is disabled.
When multiple log files exist, each in a different
format, <function>pg_current_logfile</function> without an argument
returns the path of the file having the first format found in the
ordered list: <literal>stderr</literal>,
<literal>csvlog</literal>, <literal>jsonlog</literal>.
<literal>NULL</literal> is returned if no log file has any of these
formats.
To request information about a specific log file format, supply
either <literal>csvlog</literal>, <literal>jsonlog</literal> or
<literal>stderr</literal> as the
value of the optional parameter. The result is <literal>NULL</literal>
if the log format requested is not configured in
<xref linkend="guc-log-destination"/>.
The result reflects the contents of
the <filename>current_logfiles</filename> file.
ログ収集機構が現在使用しているログファイルのパス名を返します。
パスにはlog_directoryディレクトリとログファイルの名前が含まれます。
ログ収集が無効ならば戻り値は
This function is restricted to superusers and roles with privileges of
the <literal>pg_monitor</literal> role by default, but other users can
be granted EXECUTE to run the function.
デフォルトではこの関数の実行はスーパーユーザと |
Returns the OID of the current session's temporary schema, or zero if it has none (because it has not created any temporary tables). 現在のセッションの一時スキーマのOIDを返します。(一時テーブルをまだ1つも作成しておらず)存在しなければゼロを返します。 |
Returns true if the given OID is the OID of another session's temporary schema. (This can be useful, for example, to exclude other sessions' temporary tables from a catalog display.) 指定したOIDが他のセッションの一時スキーマのOIDであれば、真を返します。 (例えば、他のセッションの一時テーブルをカタログ表示から除外したい場合などで有用です。) |
Returns true if a <acronym>JIT</acronym> compiler extension is
available (see <xref linkend="jit"/>) and the
<xref linkend="guc-jit"/> configuration parameter is set to
<literal>on</literal>.
JITコンパイラ拡張が利用可能で(第30章参照)、jit設定パラメータが |
Returns the set of names of asynchronous notification channels that the current session is listening to. 今のセッションにおいて現在待ち受け中の非同期通知チャンネル名の集合を返します。 |
Returns the fraction (0–1) of the asynchronous notification queue's maximum size that is currently occupied by notifications that are waiting to be processed. See <xref linkend="sql-listen"/> and <xref linkend="sql-notify"/> for more information. 非同期通知キューの最大サイズのうち、処理待ちの通知によって占められている現在の割合(0から1まで)を返します。 詳細はLISTENとNOTIFYをご覧ください。 |
Returns the time when the server started. サーバの起動時刻を返します。 |
Returns an array of the process ID(s) of the sessions that are blocking the server process with the specified process ID from acquiring a safe snapshot, or an empty array if there is no such server process or it is not blocked. 指定のサーバプロセスIDによる安全なスナップショットの取得をブロックしているセッションのサーバプロセスIDの配列を返します。そのようなサーバプロセスがないか、ブロックされていない場合は空の配列が返ります。
A session running a <literal>SERIALIZABLE</literal> transaction blocks
a <literal>SERIALIZABLE READ ONLY DEFERRABLE</literal> transaction
from acquiring a snapshot until the latter determines that it is safe
to avoid taking any predicate locks. See
<xref linkend="xact-serializable"/> for more information about
serializable and deferrable transactions.
Frequent calls to this function could have some impact on database performance, because it needs access to the predicate lock manager's shared state for a short time. この関数を頻繁に呼び出すと、短時間に述語ロックマネージャの共有状態にアクセスする必要があるため、データベースのパフォーマンスに若干の影響が出るかもしれません。 |
Returns the current nesting level of <productname>PostgreSQL</productname> triggers (0 if not called, directly or indirectly, from inside a trigger). PostgreSQLのトリガの現在の入れ子の深さを返します。(直接的であれ間接的であれ、トリガ内部から呼ばれていなければ0を返します)。 |
Returns the session user's name. セッションのユーザ名を返します。 |
Returns the authentication method and the identity (if any) that the
user presented during the authentication cycle before they were
assigned a database role. It is represented as
<literal>auth_method:identity</literal> or
<literal>NULL</literal> if the user has not been authenticated (for
example if <link linkend="auth-trust">Trust authentication</link> has
been used).
認証方式と、データベースロールが割り当てられる前にユーザが認証サイクル中に提示したID(存在する場合)を戻します。
ユーザが認証されている場合は |
This is equivalent to <function>current_user</function>.
|
<function>current_catalog</function>,
<function>current_role</function>,
<function>current_schema</function>,
<function>current_user</function>,
<function>session_user</function>,
and <function>user</function> have special syntactic status
in <acronym>SQL</acronym>: they must be called without trailing
parentheses. In PostgreSQL, parentheses can optionally be used with
<function>current_schema</function>, but not with the others.
current_catalog
、current_role
、current_schema
、current_user
、session_user
およびuser
はSQLにおいて特殊な構文上の地位を持っており、最後に括弧を付けずに呼び出さなければなりません。
PostgreSQLではcurrent_schema
の場合括弧を使用することができますが、他は使えません。
The <function>session_user</function> is normally the user who initiated
the current database connection; but superusers can change this setting
with <xref linkend="sql-set-session-authorization"/>.
The <function>current_user</function> is the user identifier
that is applicable for permission checking. Normally it is equal
to the session user, but it can be changed with
<xref linkend="sql-set-role"/>.
It also changes during the execution of
functions with the attribute <literal>SECURITY DEFINER</literal>.
In Unix parlance, the session user is the <quote>real user</quote> and
the current user is the <quote>effective user</quote>.
<function>current_role</function> and <function>user</function> are
synonyms for <function>current_user</function>. (The SQL standard draws
a distinction between <function>current_role</function>
and <function>current_user</function>, but <productname>PostgreSQL</productname>
does not, since it unifies users and roles into a single kind of entity.)
session_user
は、通常、現在のデータベース接続を開始したユーザです。しかし、スーパーユーザはこの設定をSET SESSION AUTHORIZATIONを使用して変更することができます。
current_user
は、権限の検査に適用されるユーザ識別子です。
通常はセッションユーザと同じですが、SET ROLEを使用して変更可能です。
SECURITY DEFINER
属性を持つ関数の実行中にも変わります。
Unix用語で言うと、セッションユーザは「実ユーザ」で、現在のユーザは「実効ユーザ」です。
current_role
とuser
はcurrent_user
の同義語です。
(標準SQLではcurrent_role
とcurrent_user
を区別していますが、PostgreSQLではユーザとロールを1種類のエンティティに統合しているため、両者に区別はありません。)
<xref linkend="functions-info-access-table"/> lists functions that
allow querying object access privileges programmatically.
(See <xref linkend="ddl-priv"/> for more information about
privileges.)
In these functions, the user whose privileges are being inquired about
can be specified by name or by OID
(<structname>pg_authid</structname>.<structfield>oid</structfield>), or if
the name is given as <literal>public</literal> then the privileges of the
PUBLIC pseudo-role are checked. Also, the <parameter>user</parameter>
argument can be omitted entirely, in which case
the <function>current_user</function> is assumed.
The object that is being inquired about can be specified either by name or
by OID, too. When specifying by name, a schema name can be included if
relevant.
The access privilege of interest is specified by a text string, which must
evaluate to one of the appropriate privilege keywords for the object's type
(e.g., <literal>SELECT</literal>). Optionally, <literal>WITH GRANT
OPTION</literal> can be added to a privilege type to test whether the
privilege is held with grant option. Also, multiple privilege types can be
listed separated by commas, in which case the result will be true if any of
the listed privileges is held. (Case of the privilege string is not
significant, and extra whitespace is allowed between but not within
privilege names.)
Some examples:
表 9.70に列挙した関数を使用して、ユーザはオブジェクトのアクセス権限をプログラムから問い合わせることができます。
権限についての詳細は、5.8を参照してください。
これらの関数では権限を検査されるユーザは名前かOID(pg_authid
.oid
)で指定できます。
名前がpublic
として与えられるとPUBLIC仮想ロールの権限が検査されます。
また、user
引数を完全に省略できます。この場合はcurrent_user
を指定したと見なされます。
検査されるオブジェクトも名前かOIDで指定できます。
名前で指定する時は関連するスキーマ名を含んでも構いません。
対象となるアクセス権限はテキスト文字列で指定します。その文字列はオブジェクト型(たとえばSELECT
)へと評価されなければならない適切なアクセスキーワードで指定します。
その権限が許可オプションで保持されるかどうかをテストするためにオプションでWITH GRANT OPTION
を権限型に追加できます。
また、複数の権限型をカンマで区切って列挙できます。この場合はどれかの権限が保持されていれば結果は真となります。
(権限文字列は大文字小文字の区別がなく、追加の空白を権限文字列の間に入れることができますが、権限名の中に入れることはできません。)
SELECT has_table_privilege('myschema.mytable', 'select'); SELECT has_table_privilege('joe', 'mytable', 'INSERT, SELECT WITH GRANT OPTION');
表9.70 アクセス権限照会関数
Function 関数 Description 説明 |
---|
Does user have privilege for any column of table?
This succeeds either if the privilege is held for the whole table, or
if there is a column-level grant of the privilege for at least one
column.
Allowable privilege types are
<literal>SELECT</literal>, <literal>INSERT</literal>,
<literal>UPDATE</literal>, and <literal>REFERENCES</literal>.
ユーザがテーブルのどれか1つの列に対して権限を所有しているか?
テーブル全体あるいは列レベルの権限が少なくとも1つの列に与えられていれば成功します。
可能な権限型は |
Does user have privilege for the specified table column?
This succeeds either if the privilege is held for the whole table, or
if there is a column-level grant of the privilege for the column.
The column can be specified by name or by attribute number
(<structname>pg_attribute</structname>.<structfield>attnum</structfield>).
Allowable privilege types are
<literal>SELECT</literal>, <literal>INSERT</literal>,
<literal>UPDATE</literal>, and <literal>REFERENCES</literal>.
ユーザがテーブルの指定された(1つの)列に対して権限を所有しているか?
テーブル全体あるいはその列に対して列レベルの権限が与えられていれば成功します。
名前かアトリビュート番号( |
Does user have privilege for database?
Allowable privilege types are
<literal>CREATE</literal>,
<literal>CONNECT</literal>,
<literal>TEMPORARY</literal>, and
<literal>TEMP</literal> (which is equivalent to
<literal>TEMPORARY</literal>).
ユーザはデータベースに対する権限があるか?
可能な権限型は |
Does user have privilege for foreign-data wrapper?
The only allowable privilege type is <literal>USAGE</literal>.
現在のユーザは外部データラッパーに対する権限があるか?
可能な権限型は |
Does user have privilege for function?
The only allowable privilege type is <literal>EXECUTE</literal>.
ユーザは関数に対する権限があるか?
可能な権限型は
When specifying a function by name rather than by OID, the allowed
input is the same as for the <type>regprocedure</type> data type (see
<xref linkend="datatype-oid"/>).
An example is:
関数をOIDではなく名前で指定する場合、 SELECT has_function_privilege('joeuser', 'myfunc(int, text)', 'execute');
|
Does user have privilege for language?
The only allowable privilege type is <literal>USAGE</literal>.
ユーザは言語に対する権限があるか?
可能な権限型は |
Does user have privilege for configuration parameter?
The parameter name is case-insensitive.
Allowable privilege types are <literal>SET</literal>
and <literal>ALTER SYSTEM</literal>.
ユーザに構成パラメータに対する権限があるか?
パラメータ名では大文字と小文字が区別されません。
使用可能な権限タイプは |
Does user have privilege for schema?
Allowable privilege types are
<literal>CREATE</literal> and
<literal>USAGE</literal>.
ユーザはスキーマに対する権限があるか?
可能な権限型は |
Does user have privilege for sequence?
Allowable privilege types are
<literal>USAGE</literal>,
<literal>SELECT</literal>, and
<literal>UPDATE</literal>.
ユーザはシーケンスに対する権限があるか?
可能な権限型は |
Does user have privilege for foreign server?
The only allowable privilege type is <literal>USAGE</literal>.
ユーザは外部サーバに対する権限があるか?
可能な権限型は |
Does user have privilege for table?
Allowable privilege types
are <literal>SELECT</literal>, <literal>INSERT</literal>,
<literal>UPDATE</literal>, <literal>DELETE</literal>,
<literal>TRUNCATE</literal>, <literal>REFERENCES</literal>,
<literal>TRIGGER</literal>, and <literal>MAINTAIN</literal>.
《マッチ度[74.489796]》ユーザはテーブルに対する権限があるか?
可能な権限型は |
Does user have privilege for tablespace?
The only allowable privilege type is <literal>CREATE</literal>.
ユーザはテーブル空間に対する権限があるか?
可能な権限型は |
Does user have privilege for data type?
The only allowable privilege type is <literal>USAGE</literal>.
When specifying a type by name rather than by OID, the allowed input
is the same as for the <type>regtype</type> data type (see
<xref linkend="datatype-oid"/>).
ユーザにデータ型に対する権限があるか?
可能な権限型は |
Does user have privilege for role?
Allowable privilege types are
<literal>MEMBER</literal>, <literal>USAGE</literal>,
and <literal>SET</literal>.
<literal>MEMBER</literal> denotes direct or indirect membership in
the role without regard to what specific privileges may be conferred.
<literal>USAGE</literal> denotes whether the privileges of the role
are immediately available without doing <command>SET ROLE</command>,
while <literal>SET</literal> denotes whether it is possible to change
to the role using the <literal>SET ROLE</literal> command.
<literal>WITH ADMIN OPTION</literal> or <literal>WITH GRANT
OPTION</literal> can be added to any of these privilege types to
test whether the <literal>ADMIN</literal> privilege is held (all
six spellings test the same thing).
This function does not allow the special case of
setting <parameter>user</parameter> to <literal>public</literal>,
because the PUBLIC pseudo-role can never be a member of real roles.
《マッチ度[67.084639]》ユーザにロールに対する権限があるか?
可能な権限型は |
Is row-level security active for the specified table in the context of the current user and current environment? 現在のユーザと環境のコンテキストにおいて、指定のテーブルに対して行単位セキュリティは有効か? |
<xref linkend="functions-aclitem-op-table"/> shows the operators
available for the <type>aclitem</type> type, which is the catalog
representation of access privileges. See <xref linkend="ddl-priv"/>
for information about how to read access privilege values.
アクセス権限のカタログ表現であるaclitem
型で利用可能な演算子を表 9.71に示します。
アクセス権限値を解釈する方法に関する情報は5.8をご覧ください。
表9.71 aclitem
演算子
<xref linkend="functions-aclitem-fn-table"/> shows some additional
functions to manage the <type>aclitem</type> type.
表 9.72にaclitem
型を管理する追加の関数を示します。
表9.72 aclitem
関数
Function 関数 Description 説明 |
---|
Constructs an <type>aclitem</type> array holding the default access
privileges for an object of type <parameter>type</parameter> belonging
to the role with OID <parameter>ownerId</parameter>. This represents
the access privileges that will be assumed when an object's ACL entry
is null. (The default access privileges are described in
<xref linkend="ddl-priv"/>.)
The <parameter>type</parameter> parameter must be one of
'c' for <literal>COLUMN</literal>,
'r' for <literal>TABLE</literal> and table-like objects,
's' for <literal>SEQUENCE</literal>,
'd' for <literal>DATABASE</literal>,
'f' for <literal>FUNCTION</literal> or <literal>PROCEDURE</literal>,
'l' for <literal>LANGUAGE</literal>,
'L' for <literal>LARGE OBJECT</literal>,
'n' for <literal>SCHEMA</literal>,
'p' for <literal>PARAMETER</literal>,
't' for <literal>TABLESPACE</literal>,
'F' for <literal>FOREIGN DATA WRAPPER</literal>,
'S' for <literal>FOREIGN SERVER</literal>,
or
'T' for <literal>TYPE</literal> or <literal>DOMAIN</literal>.
|
Returns the <type>aclitem</type> array as a set of rows.
If the grantee is the pseudo-role PUBLIC, it is represented by zero in
the <parameter>grantee</parameter> column. Each granted privilege is
represented as <literal>SELECT</literal>, <literal>INSERT</literal>,
etc (see <xref linkend="privilege-abbrevs-table"/> for a full list).
Note that each privilege is broken out as a separate row, so
only one keyword appears in the <parameter>privilege_type</parameter>
column.
行の集合として |
Constructs an <type>aclitem</type> with the given properties.
<parameter>privileges</parameter> is a comma-separated list of
privilege names such as <literal>SELECT</literal>,
<literal>INSERT</literal>, etc, all of which are set in the
result. (Case of the privilege string is not significant, and
extra whitespace is allowed between but not within privilege
names.)
与えられた属性で |
<xref linkend="functions-info-schema-table"/> shows functions that determine whether a certain object is <firstterm>visible</firstterm> in the current schema search path. For example, a table is said to be visible if its containing schema is in the search path and no table of the same name appears earlier in the search path. This is equivalent to the statement that the table can be referenced by name without explicit schema qualification. Thus, to list the names of all visible tables: 表 9.73に、特定のオブジェクトが、現行スキーマの検索パスにおいて可視かどうかを判別する関数を示します。 例えば、あるテーブルを含むスキーマが検索パス内に存在し、検索パス内の前方に同じ名前のテーブルがない場合、そのテーブルは可視であると言います。 つまり、これは、テーブルが明示的なスキーマ修飾なしで名前によって参照可能であるということです。 ですから全ての可視テーブルの名前を列挙するには以下のようにします。
SELECT relname FROM pg_class WHERE pg_table_is_visible(oid);
For functions and operators, an object in the search path is said to be visible if there is no object of the same name <emphasis>and argument data type(s)</emphasis> earlier in the path. For operator classes and families, both the name and the associated index access method are considered. 関数および演算子では、パスの前方に同じ名前かつ同じ引数のデータ型を持つオブジェクトが存在しなければ、検索パス内のオブジェクトは可視と言えます。 演算子クラスと(演算子)族では、名前と関連するインデックスアクセスメソッドが考慮されます。
表9.73 スキーマ可視性照会関数
All these functions require object OIDs to identify the object to be
checked. If you want to test an object by name, it is convenient to use
the OID alias types (<type>regclass</type>, <type>regtype</type>,
<type>regprocedure</type>, <type>regoperator</type>, <type>regconfig</type>,
or <type>regdictionary</type>),
for example:
これらの関数は全て、検査するオブジェクトを識別するために、オブジェクトのOIDを必要とします。
オブジェクトを名前でテストする場合、OID別名型(regclass
、regtype
、regprocedure
、regoperator
、regconfig
、またはregdictionary
)を使用すると便利です。
例えば、以下のようにします。
SELECT pg_type_is_visible('myschema.widget'::regtype);
Note that it would not make much sense to test a non-schema-qualified type name in this way — if the name can be recognized at all, it must be visible. ただし、このようなやり方でスキーマ修飾されていない型名をテストしても、あまり意味がないことに注意してください。名前が認識されれば、それは必ず可視ということになります。
<xref linkend="functions-info-catalog-table"/> lists functions that extract information from the system catalogs. 表 9.74に、システムカタログから情報を抽出する関数を列挙します。
表9.74 システムカタログ情報関数
Function 関数 Description 説明 |
---|
Returns the SQL name for a data type that is identified by its type OID and possibly a type modifier. Pass NULL for the type modifier if no specific modifier is known. 型OIDと型修飾子で決まるデータ型のSQL名を返します。 型修飾子が不明な場合はNULLを型修飾子に渡してください。 |
Returns the OID of the base type of a domain identified by its type OID. If the argument is the OID of a non-domain type, returns the argument as-is. Returns NULL if the argument is not a valid type OID. If there's a chain of domain dependencies, it will recurse until finding the base type. 《機械翻訳》ドメインの型のOIDで識別される基本型のOIDを返します。 引数がドメイン以外の型のOIDの場合、引数をそのまま返します。 引数が有効な型OIDでない場合、基本型が見つかるまで再帰します。 ドメイン依存の連鎖がある場合、基本型が見つかるまで再帰します。
Assuming <literal>CREATE DOMAIN mytext AS text</literal>:
《機械翻訳》
|
Converts the supplied encoding name into an integer representing the
internal identifier used in some system catalog tables.
Returns <literal>-1</literal> if an unknown encoding name is provided.
指定されたエンコード名を、一部のシステムカタログテーブルで使用されている内部識別子を表す整数に変換します。
不明なエンコード名が指定された場合は |
Converts the integer used as the internal identifier of an encoding in some system catalog tables into a human-readable string. Returns an empty string if an invalid encoding number is provided. システムカタログテーブル内のエンコーディングの内部識別子として使用されている整数を、読み取り可能な文字列に変換します。 無効なエンコーディング番号が指定されている場合は、空の文字列を返します。 |
Returns a set of records describing the foreign key relationships
that exist within the <productname>PostgreSQL</productname> system
catalogs.
The <parameter>fktable</parameter> column contains the name of the
referencing catalog, and the <parameter>fkcols</parameter> column
contains the name(s) of the referencing column(s). Similarly,
the <parameter>pktable</parameter> column contains the name of the
referenced catalog, and the <parameter>pkcols</parameter> column
contains the name(s) of the referenced column(s).
If <parameter>is_array</parameter> is true, the last referencing
column is an array, each of whose elements should match some entry
in the referenced catalog.
If <parameter>is_opt</parameter> is true, the referencing column(s)
are allowed to contain zeroes instead of a valid reference.
PostgreSQLシステムカタログ中に存在する外部キー関係を記述するレコードの集合を返します。
|
Reconstructs the creating command for a constraint. (This is a decompiled reconstruction, not the original text of the command.) 制約を作成したコマンドを再構築します。 (これは逆コンパイルで構成したもので、元のコマンドのテキストではありません。) |
Decompiles the internal form of an expression stored in the system catalogs, such as the default value for a column. If the expression might contain Vars, specify the OID of the relation they refer to as the second parameter; if no Vars are expected, passing zero is sufficient. 列のデフォルト値のような、システムカタログに格納された内部表現式を逆コンパイルします。 式に変数が含まれている場合は2番目の引数として参照されているリレーションのOIDを指定してください。変数が含まれていない場合は、ゼロを渡しておけば十分です。 |
Reconstructs the creating command for a function or procedure.
(This is a decompiled reconstruction, not the original text
of the command.)
The result is a complete <command>CREATE OR REPLACE FUNCTION</command>
or <command>CREATE OR REPLACE PROCEDURE</command> statement.
関数あるいはプロシージャの作成コマンドを再構築します。
(これは逆コンパイルによる再構築で、元のコマンドのテキストではありません。)
結果は完全な |
Reconstructs the argument list of a function or procedure, in the form
it would need to appear in within <command>CREATE FUNCTION</command>
(including default values).
|
Reconstructs the argument list necessary to identify a function or
procedure, in the form it would need to appear in within commands such
as <command>ALTER FUNCTION</command>. This form omits default values.
|
Reconstructs the <literal>RETURNS</literal> clause of a function, in
the form it would need to appear in within <command>CREATE
FUNCTION</command>. Returns <literal>NULL</literal> for a procedure.
|
Reconstructs the creating command for an index.
(This is a decompiled reconstruction, not the original text
of the command.) If <parameter>column</parameter> is supplied and is
not zero, only the definition of that column is reconstructed.
インデックスを作成するコマンドを再構築します。
(これは逆コンパイルによる再構築で、元のコマンドのテキストではありません。)
|
Returns a set of records describing the SQL keywords recognized by the
server. The <parameter>word</parameter> column contains the
keyword. The <parameter>catcode</parameter> column contains a
category code: <literal>U</literal> for an unreserved
keyword, <literal>C</literal> for a keyword that can be a column
name, <literal>T</literal> for a keyword that can be a type or
function name, or <literal>R</literal> for a fully reserved keyword.
The <parameter>barelabel</parameter> column
contains <literal>true</literal> if the keyword can be used as
a <quote>bare</quote> column label in <command>SELECT</command> lists,
or <literal>false</literal> if it can only be used
after <literal>AS</literal>.
The <parameter>catdesc</parameter> column contains a
possibly-localized string describing the keyword's category.
The <parameter>baredesc</parameter> column contains a
possibly-localized string describing the keyword's column label status.
サーバが認識するSQLキーワードを記述するレコードの集合を返します。
|
Reconstructs the definition of a partitioned table's partition
key, in the form it would have in the <literal>PARTITION
BY</literal> clause of <command>CREATE TABLE</command>.
(This is a decompiled reconstruction, not the original text
of the command.)
パーティション化テーブルのパーティションキーの定義を、 |
Reconstructs the creating command for a rule. (This is a decompiled reconstruction, not the original text of the command.) ルールを作成するコマンドを再構築します。 (これは逆コンパイルによる再構築で、元のコマンドのテキストではありません。) |
Returns the name of the sequence associated with a column,
or NULL if no sequence is associated with the column.
If the column is an identity column, the associated sequence is the
sequence internally created for that column.
For columns created using one of the serial types
(<type>serial</type>, <type>smallserial</type>, <type>bigserial</type>),
it is the sequence created for that serial column definition.
In the latter case, the association can be modified or removed
with <command>ALTER SEQUENCE OWNED BY</command>.
(This function probably should have been
called <function>pg_get_owned_sequence</function>; its current name
reflects the fact that it has historically been used with serial-type
columns.) The first parameter is a table name with optional
schema, and the second parameter is a column name. Because the first
parameter potentially contains both schema and table names, it is
parsed per usual SQL rules, meaning it is lower-cased by default.
The second parameter, being just a column name, is treated literally
and so has its case preserved. The result is suitably formatted
for passing to the sequence functions (see
<xref linkend="functions-sequence"/>).
列に関連するシーケンスの名前を返します。
列に関連するシーケンスが存在しなければ、NULLを返します。
列がIDENTITY列の場合、関連するシーケンスはIDENTITY列に対して内部的に作成されたシーケンスとなります。
SERIAL型( A typical use is in reading the current value of the sequence for an identity or serial column, for example: 典型的な使用法はIDENTITY列またはSERIAL列のシーケンスの現在値を読み取ることです。例を示します。 SELECT currval(pg_get_serial_sequence('sometable', 'id'));
|
Reconstructs the creating command for an extended statistics object. (This is a decompiled reconstruction, not the original text of the command.) 拡張統計情報オブジェクトを作成するコマンドを再構築します。 (これは逆コンパイルによる再構築で、元のコマンドのテキストではありません。) |
Reconstructs the creating command for a trigger. (This is a decompiled reconstruction, not the original text of the command.) トリガを作成するコマンドを再構築します。 (これは逆コンパイルによる再構築で、元のコマンドのテキストではありません。) |
Returns a role's name given its OID. OIDで指定されるロール名を返します。 |
Reconstructs the underlying <command>SELECT</command> command for a
view or materialized view. (This is a decompiled reconstruction, not
the original text of the command.)
ビューあるいはマテリアライズドビューの背後にある |
Reconstructs the underlying <command>SELECT</command> command for a
view or materialized view. (This is a decompiled reconstruction, not
the original text of the command.) In this form of the function,
pretty-printing is always enabled, and long lines are wrapped to try
to keep them shorter than the specified number of columns.
ビューあるいはマテリアライズドビューの背後にある |
Reconstructs the underlying <command>SELECT</command> command for a
view or materialized view, working from a textual name for the view
rather than its OID. (This is deprecated; use the OID variant
instead.)
ビューあるいはマテリアライズドビューの背後にある |
Tests whether an index column has the named property.
Common index column properties are listed in
<xref linkend="functions-info-index-column-props"/>.
(Note that extension access methods can define additional property
names for their indexes.)
<literal>NULL</literal> is returned if the property name is not known
or does not apply to the particular object, or if the OID or column
number does not identify a valid object.
インデックス列が名前付きのプロパティを持つかどうかを検査します。
共通のインデックス列プロパティは表 9.75に列挙されています。
(拡張アクセスメソッドはインデックスに対して追加のプロパティ名を持てることに注意してください。)
プロパティ名が不明あるいは特定のオブジェクトに適用されない場合、OIDあるいは列番号が有効なオブジェクトを特定しない場合は |
Tests whether an index has the named property.
Common index properties are listed in
<xref linkend="functions-info-index-props"/>.
(Note that extension access methods can define additional property
names for their indexes.)
<literal>NULL</literal> is returned if the property name is not known
or does not apply to the particular object, or if the OID does not
identify a valid object.
インデックスが名前付きのプロパティを持つかどうかを検査します。
共通のインデックスプロパティは表 9.76に列挙されています。
(拡張アクセスメソッドはインデックスに対して追加のプロパティ名を持てることに注意してください。)
プロパティ名が不明あるいは特定のオブジェクトに適用されない場合、OIDが有効なオブジェクトを特定しない場合は |
Tests whether an index access method has the named property.
Access method properties are listed in
<xref linkend="functions-info-indexam-props"/>.
<literal>NULL</literal> is returned if the property name is not known
or does not apply to the particular object, or if the OID does not
identify a valid object.
インデックスアクセスメソッドが名前付きのプロパティを持つかどうかを検査します。
アクセスメソッドプロパティは表 9.77に列挙されています。
プロパティ名が不明あるいは特定のオブジェクトに適用されない場合、OIDが有効なオブジェクトを特定しない場合は |
Returns the set of storage options represented by a value from
<structname>pg_class</structname>.<structfield>reloptions</structfield> or
<structname>pg_attribute</structname>.<structfield>attoptions</structfield>.
|
Returns an array of the flags associated with the given GUC, or
<literal>NULL</literal> if it does not exist. The result is
an empty array if the GUC exists but there are no flags to show.
Only the most useful flags listed in
<xref linkend="functions-pg-settings-flags"/> are exposed.
指定されたGUCに関連付けられたフラグの配列を返します。
存在しない場合は |
Returns the set of OIDs of databases that have objects stored in the
specified tablespace. If this function returns any rows, the
tablespace is not empty and cannot be dropped. To identify the specific
objects populating the tablespace, you will need to connect to the
database(s) identified by <function>pg_tablespace_databases</function>
and query their <structname>pg_class</structname> catalogs.
指定したテーブル空間に格納されるオブジェクトを持つデータベースのOIDの集合を返します。
この関数が何らかの行を返すならば、そのテーブル空間は空ではなく、削除できません。
特定のオブジェクトがそのテーブル空間にあるかどうかを確認するには、 |
Returns the file system path that this tablespace is located in. テーブル空間が配置されているファイルシステムのパスを返します。 |
Returns the OID of the data type of the value that is passed to it.
This can be helpful for troubleshooting or dynamically constructing
SQL queries. The function is declared as
returning <type>regtype</type>, which is an OID alias type (see
<xref linkend="datatype-oid"/>); this means that it is the same as an
OID for comparison purposes but displays as a type name.
渡された値のデータ型のOIDを返します。
これはトラブル解決作業、または動的にSQL問い合わせを生成するのに便利です。
この関数は、OIDの別名型である
|
Returns the name of the collation of the value that is passed to it.
The value is quoted and schema-qualified if necessary. If no
collation was derived for the argument expression,
then <literal>NULL</literal> is returned. If the argument is not of a
collatable data type, then an error is raised.
渡された値の照合順序の名前を返します。
値は必要ならば引用符付きでスキーマ修飾されます。
引数式から照合順序が生じなければ、
|
Translates a textual relation name to its OID. A similar result is
obtained by casting the string to type <type>regclass</type> (see
<xref linkend="datatype-oid"/>); however, this function will return
<literal>NULL</literal> rather than throwing an error if the name is
not found.
テキスト形式のリレーション名をOIDに変換します。
同様の結果はその文字列を |
Translates a textual collation name to its OID. A similar result is
obtained by casting the string to type <type>regcollation</type> (see
<xref linkend="datatype-oid"/>); however, this function will return
<literal>NULL</literal> rather than throwing an error if the name is
not found.
テキスト形式の照合順名をOIDに変換します。
同様の結果はその文字列を |
Translates a textual schema name to its OID. A similar result is
obtained by casting the string to type <type>regnamespace</type> (see
<xref linkend="datatype-oid"/>); however, this function will return
<literal>NULL</literal> rather than throwing an error if the name is
not found.
テキスト形式のスキーマ名をOIDに変換します。
同様の結果はその文字列を |
Translates a textual operator name to its OID. A similar result is
obtained by casting the string to type <type>regoper</type> (see
<xref linkend="datatype-oid"/>); however, this function will return
<literal>NULL</literal> rather than throwing an error if the name is
not found or is ambiguous.
テキスト形式の演算子名をOIDに変換します。
同様の結果はその文字列を |
Translates a textual operator name (with parameter types) to its OID. A similar result is
obtained by casting the string to type <type>regoperator</type> (see
<xref linkend="datatype-oid"/>); however, this function will return
<literal>NULL</literal> rather than throwing an error if the name is
not found.
テキスト形式の演算子名(パラメータ型付き)をOIDに変換します。
同様の結果はその文字列を |
Translates a textual function or procedure name to its OID. A similar result is
obtained by casting the string to type <type>regproc</type> (see
<xref linkend="datatype-oid"/>); however, this function will return
<literal>NULL</literal> rather than throwing an error if the name is
not found or is ambiguous.
テキスト形式の関数名またはプロシージャ名をOIDに変換します。
同様の結果はその文字列を |
Translates a textual function or procedure name (with argument types) to its OID. A similar result is
obtained by casting the string to type <type>regprocedure</type> (see
<xref linkend="datatype-oid"/>); however, this function will return
<literal>NULL</literal> rather than throwing an error if the name is
not found.
テキスト形式の関数名またはプロシージャ名(引数型付き)をOIDに変換します。
同様の結果はその文字列を |
Translates a textual role name to its OID. A similar result is
obtained by casting the string to type <type>regrole</type> (see
<xref linkend="datatype-oid"/>); however, this function will return
<literal>NULL</literal> rather than throwing an error if the name is
not found.
テキスト形式のロール名をOIDに変換します。
同様の結果はその文字列を |
Parses a string of text, extracts a potential type name from it,
and translates that name into a type OID. A syntax error in the
string will result in an error; but if the string is a
syntactically valid type name that happens not to be found in the
catalogs, the result is <literal>NULL</literal>. A similar result
is obtained by casting the string to type <type>regtype</type>
(see <xref linkend="datatype-oid"/>), except that that will throw
error for name not found.
《機械翻訳》文字列を解析し、潜在的な型名を抽出し、その名前を型OIDに変換します。
文字列の構文エラーはエラーになりますが、文字列がカタログにない構文的に有効な型名である場合、結果は |
Parses a string of text, extracts a potential type name from it,
and translates its type modifier, if any. A syntax error in the
string will result in an error; but if the string is a
syntactically valid type name that happens not to be found in the
catalogs, the result is <literal>NULL</literal>. The result is
<literal>-1</literal> if no type modifier is present.
《機械翻訳》テキスト文字列を構文解析し、可能性のある型名を抽出し、型修飾子があればそれを変換します。
文字列内に構文エラーがあるとエラーになりますが、文字列がカタログにない構文的に有効な型名である場合は、結果は
<function>to_regtypemod</function> can be combined with
<xref linkend="to-regtype"/> to produce appropriate inputs for
<xref linkend="format-type"/>, allowing a string representing a
type name to be canonicalized.
《機械翻訳》
|
Most of the functions that reconstruct (decompile) database objects
have an optional <parameter>pretty</parameter> flag, which
if <literal>true</literal> causes the result to
be <quote>pretty-printed</quote>. Pretty-printing suppresses unnecessary
parentheses and adds whitespace for legibility.
The pretty-printed format is more readable, but the default format
is more likely to be interpreted the same way by future versions of
<productname>PostgreSQL</productname>; so avoid using pretty-printed output
for dump purposes. Passing <literal>false</literal> for
the <parameter>pretty</parameter> parameter yields the same result as
omitting the parameter.
データベースオブジェクトを再構築(逆コンパイル)する関数の多くにオプションのpretty
フラグがあり、true
なら結果が「整形」されるようになっています。
整形によって不必要な括弧が抑止され、見やすさのために空白は追加されます。
整形形式は見やすいですが、デフォルト形式は将来のバージョンのPostgreSQLでも同じように解釈される可能性が高いです。
ですから、整形された出力をダンプ目的で使わないでください。
pretty
引数にfalse
を渡すとパラメータを省略したとの同じ結果が得られます。
表9.75 インデックス列の属性
名前 | 説明 |
---|---|
asc | 前方スキャンで列は昇順にソートされるか |
desc | 前方スキャンで列は降順にソートされるか |
nulls_first | 前方スキャンで列はNULLを先頭にしてソートするか |
nulls_last | 前方スキャンで列はNULLを最後にしてソートするか |
orderable | 列は定義済みのソート順を所有しているか |
distance_orderable | 列は「距離」の演算子の順序に従ってスキャンできるか、例えばORDER BY col <-> 定数 など
|
returnable | 列の値をインデックスオンリースキャンで返すことができるか |
search_array | 列はcol = ANY(array) の検索をネイティブにサポートしているか
|
search_nulls | 列はIS NULL およびIS NOT NULL の検索をサポートしているか
|
表9.76 インデックスの属性
名前 | 説明 |
---|---|
clusterable | インデックスをCLUSTER コマンドで使うことができるか
|
index_scan | インデックスは通常の(ビットマップでない)スキャンをサポートしているか |
bitmap_scan | インデックスはビットマップスキャンをサポートしているか |
backward_scan | スキャンの途中でスキャン方向を変更できるか(マテリアライゼーションを必要とせずにカーソルの FETCH BACKWARD をサポートするため)
|
表9.77 インデックスアクセスメソッドの属性
名前 | 説明 |
---|---|
can_order | アクセスメソッドはCREATE INDEX においてASC 、DESC および関連するキーワードをサポートしているか
|
can_unique | アクセスメソッドは一意インデックスをサポートしているか |
can_multi_col | アクセスメソッドは複数列にまたがるインデックスをサポートしているか |
can_exclude | アクセスメソッドは排他制約をサポートしているか |
can_include | アクセスメソッドがCREATE INDEX のINCLUDE 句をサポートしているか |
表9.78 GUC Flags
フラグ | 説明 |
---|---|
EXPLAIN | このフラグを持つパラメータはEXPLAIN (SETTINGS) コマンドに含まれます。
|
NO_SHOW_ALL | このフラグを持つパラメータはSHOW ALL コマンドから除外されます。
|
NO_RESET | このフラグを持つパラメータはRESET コマンドをサポートしません。
|
NO_RESET_ALL | このフラグを持つパラメータはRESET ALL コマンドから除外されます。
|
NOT_IN_SAMPLE | このフラグを持つパラメータはデフォルトではpostgresql.conf に含まれません。
|
RUNTIME_COMPUTED | このフラグを持つパラメータは実行時に計算されます。 |
<xref linkend="functions-info-object-table"/> lists functions related to database object identification and addressing. 表 9.79にデータベースオブジェクトの識別とアドレスに関連する関数を示します。
表9.79 オブジェクト情報とアドレスの関数
The functions shown in <xref linkend="functions-info-comment-table"/> extract comments previously stored with the <xref linkend="sql-comment"/> command. A null value is returned if no comment could be found for the specified parameters. 表 9.80に示される関数は、COMMENTコマンドによって以前に保存されたコメントを抽出します。 指定されたパラメータに対するコメントが存在しない場合、NULL値が返されます。
表9.80 コメント情報関数
The functions shown in <xref linkend="functions-info-validity-table"/> can be helpful for checking validity of proposed input data. 表 9.81で示した関数は、与えられた入力データの有効性をチェックするのに役立ちます。
表9.81 データ有効性検証関数
The functions shown in <xref linkend="functions-pg-snapshot"/> provide server transaction information in an exportable form. The main use of these functions is to determine which transactions were committed between two snapshots. 表 9.82で示される関数はサーバトランザクション情報をエクスポートできる形式で提供します。 これら関数の主な使用目的は2つのスナップショット間でどのトランザクションがコミットされたのかを特定するためです。
表9.82 トランザクションIDとスナップショット情報関数
Function 関数 Description 説明 |
---|
Returns the current transaction's ID. It will assign a new one if the current transaction does not have one already (because it has not performed any database updates); see <xref linkend="transaction-id"/> for details. If executed in a subtransaction, this will return the top-level transaction ID; see <xref linkend="subxacts"/> for details. 現在のトランザクションのIDを返します。 現在トランザクションにIDがない場合(データベースの更新を実行していないため)、新しいIDが割り当てられます。 詳細は66.1を参照してください。 サブトランザクションで実行された場合、トップ-レベルトランザクションIDが返却されます。 詳細は66.3を参照してください。 |
Returns the current transaction's ID, or <literal>NULL</literal> if no
ID is assigned yet. (It's best to use this variant if the transaction
might otherwise be read-only, to avoid unnecessary consumption of an
XID.)
If executed in a subtransaction, this will return the top-level
transaction ID.
現在のトランザクションIDを返します。もしまだ割り当てられていなければ |
Reports the commit status of a recent transaction.
The result is one of <literal>in progress</literal>,
<literal>committed</literal>, or <literal>aborted</literal>,
provided that the transaction is recent enough that the system retains
the commit status of that transaction.
If it is old enough that no references to the transaction survive in
the system and the commit status information has been discarded, the
result is <literal>NULL</literal>.
Applications might use this function, for example, to determine
whether their transaction committed or aborted after the application
and database server become disconnected while
a <literal>COMMIT</literal> is in progress.
Note that prepared transactions are reported as <literal>in
progress</literal>; applications must check <link
linkend="view-pg-prepared-xacts"><structname>pg_prepared_xacts</structname></link>
if they need to determine whether a transaction ID belongs to a
prepared transaction.
最近のトランザクションのコミット状態について報告します。
トランザクションが最近のもので、システムがそのトランザクションのコミット状態を保持している場合は、トランザクションの状態は |
Returns a current <firstterm>snapshot</firstterm>, a data structure showing which transaction IDs are now in-progress. Only top-level transaction IDs are included in the snapshot; subtransaction IDs are not shown; see <xref linkend="subxacts"/> for details. どのトランザクションIDがin-progressなのかを表示するデータ構造である現在のsnapshotを返します。 スナップショットにはトップレベルのトランザクションIDだけが含まれます。 サブトランザクションIDは表示されません。詳細は66.3をご覧ください。 |
Returns the set of in-progress transaction IDs contained in a snapshot. スナップショットに含まれるin-progressのトランザクションIDの集合を返します。 |
Returns the <structfield>xmax</structfield> of a snapshot.
スナップショットの |
Returns the <structfield>xmin</structfield> of a snapshot.
スナップショットの |
Is the given transaction ID <firstterm>visible</firstterm> according to this snapshot (that is, was it completed before the snapshot was taken)? Note that this function will not give the correct answer for a subtransaction ID (subxid); see <xref linkend="subxacts"/> for details. このスナップショットによると与えられたトランザクションIDが可視か(すなわちスナップショットが取得される前に完了していたか)? この関数は副トランザクションID(subxid)に対しては正しい答えを返さないことに注意してください。 詳細は66.3を参照してください。 |
The internal transaction ID type <type>xid</type> is 32 bits wide and
wraps around every 4 billion transactions. However,
the functions shown in <xref linkend="functions-pg-snapshot"/> use a
64-bit type <type>xid8</type> that does not wrap around during the life
of an installation and can be converted to <type>xid</type> by casting if
required; see <xref linkend="transaction-id"/> for details.
The data type <type>pg_snapshot</type> stores information about
transaction ID visibility at a particular moment in time. Its components
are described in <xref linkend="functions-pg-snapshot-parts"/>.
<type>pg_snapshot</type>'s textual representation is
<literal><replaceable>xmin</replaceable>:<replaceable>xmax</replaceable>:<replaceable>xip_list</replaceable></literal>.
For example <literal>10:20:10,14,15</literal> means
<literal>xmin=10, xmax=20, xip_list=10, 14, 15</literal>.
内部トランザクションID型(xid
)は32ビット幅なので40億トランザクション毎にラップします。
とは言っても、表 9.82に示される関数はインストレーションの生涯にわたってラップしないxid8
型の64ビット形式を使用しており、必要に応じてxid
にキャストして変換できます。
詳細は66.1を参照してください。
これらの関数で使用されるデータ型、pg_snapshot
はある特定の時間におけるトランザクションIDの可視性に関する情報を格納します。
構成要素は表 9.83に記載されています。
pg_snapshot
のテキスト表現は
です。
たとえばxmin
:xmax
:xip_list
10:20:10,14,15
はxmin=10, xmax=20, xip_list=10, 14, 15
であることを意味します。
表9.83 スナップショット構成要素
名前 | 説明 |
---|---|
xmin |
Lowest transaction ID that was still active. All transaction IDs
less than <structfield>xmin</structfield> are either committed and visible,
or rolled back and dead.
現在実行中で最も小さいトランザクションID。
xmin より小さい全てのトランザクションはコミットされて可視となっているか、またはロールバックされて消滅しています。
|
xmax |
One past the highest completed transaction ID. All transaction IDs
greater than or equal to <structfield>xmax</structfield> had not yet
completed as of the time of the snapshot, and thus are invisible.
完了した最も大きなトランザクションIDの一つ大きなID。
xmax と等しいかより大きい全てのトランザクションIDはスナップショットの時点で未完了であり、従って不可視です。
|
xip_list |
Transactions in progress at the time of the snapshot. A transaction
ID that is <literal>xmin <= <replaceable>X</replaceable> <
xmax</literal> and not in this list was already completed at the time
of the snapshot, and thus is either visible or dead according to its
commit status. This list does not include the transaction IDs of
subtransactions (subxids).
スナップショット時の実行中のトランザクションです。
xmin <= で、このリストにないトランザクションIDはスナップショット時点ですでに完了しており、コミット状態によって可視あるいはデッドのどちらかです。
リストには副トランザクションのトランザクションID(subxids)は含まれません。
|
In releases of <productname>PostgreSQL</productname> before 13 there was
no <type>xid8</type> type, so variants of these functions were provided
that used <type>bigint</type> to represent a 64-bit XID, with a
correspondingly distinct snapshot data type <type>txid_snapshot</type>.
These older functions have <literal>txid</literal> in their names. They
are still supported for backward compatibility, but may be removed from a
future release. See <xref linkend="functions-txid-snapshot"/>.
PostgreSQLリリースの13より前ではxid8
型がなく、これらの関数の変種は、64ビットのXIDを表現するためにbigint
を、スナップショットデータ型に対応する別のtxid_snapshot
型を使っていました。
これらの古い関数ではtxid
が名前に含まれています。
過去互換性のためにこれらはまだサポートされていますが、将来のリリースでは削除されるかも知れません。
表 9.84を参照してください。
表9.84 廃止予定のトランザクションIDとスナップショット情報関数
The functions shown in <xref linkend="functions-commit-timestamp"/> provide information about when past transactions were committed. They only provide useful data when the <xref linkend="guc-track-commit-timestamp"/> configuration option is enabled, and only for transactions that were committed after it was enabled. Commit timestamp information is routinely removed during vacuum. 表 9.85に示す関数はいつ過去のトランザクションがコミットされたかの情報を提供します。 track_commit_timestamp設定オプションが有効のときにだけ、かつそれが有効になった後にコミットされたトランザクションについてのみ意味のある情報を提供します。 コミット時刻情報は通常、バキューム時に削除されます。
表9.85 コミットされたトランザクションに関する情報関数
The functions shown in <xref linkend="functions-controldata"/>
print information initialized during <command>initdb</command>, such
as the catalog version. They also show information about write-ahead
logging and checkpoint processing. This information is cluster-wide,
not specific to any one database. These functions provide most of the same
information, from the same source, as the
<xref linkend="app-pgcontroldata"/> application.
表 9.86に示す関数は、カタログのバージョンなどといったinitdb
の実行時に初期化される情報を表示します。
それらはまた、先行書き込みログとチェックポイント処理についての情報も示します。
この情報はクラスタ全体に渡るもので、どれか1つのデータベースに特有のものではありません。
これらの関数はpg_controldataアプリケーションと同じ情報源から、ほぼ同じ情報を提供します。
表9.86 制御データ関数
Function 関数 Description 説明 |
---|
Returns information about current checkpoint state, as shown in <xref linkend="functions-pg-control-checkpoint"/>. 表 9.87に示すように現在のチェックポイントの状態に関する情報を返します。 |
Returns information about current control file state, as shown in <xref linkend="functions-pg-control-system"/>. 表 9.88に示すように現在の制御ファイルの状態に関する情報を返します。 |
Returns information about cluster initialization state, as shown in <xref linkend="functions-pg-control-init"/>. 表 9.89に示すようにクラスタの初期化状態に関する情報を返します。 |
Returns information about recovery state, as shown in <xref linkend="functions-pg-control-recovery"/>. 表 9.90に示すようにリカバリ状態に関する情報を返します。 |
表9.87 pg_control_checkpoint
の出力列
列名 | データ型 |
---|---|
checkpoint_lsn | pg_lsn |
redo_lsn | pg_lsn |
redo_wal_file | text |
timeline_id | integer |
prev_timeline_id | integer |
full_page_writes | boolean |
next_xid | text |
next_oid | oid |
next_multixact_id | xid |
next_multi_offset | xid |
oldest_xid | xid |
oldest_xid_dbid | oid |
oldest_active_xid | xid |
oldest_multi_xid | xid |
oldest_multi_dbid | oid |
oldest_commit_ts_xid | xid |
newest_commit_ts_xid | xid |
checkpoint_time | timestamp with time zone |
表9.88 pg_control_system
の出力列
列名 | データ型 |
---|---|
pg_control_version | integer |
catalog_version_no | integer |
system_identifier | bigint |
pg_control_last_modified | timestamp with time zone |
表9.89 pg_control_init
Output Columns
列名 | データ型 |
---|---|
max_data_alignment | integer |
database_block_size | integer |
blocks_per_segment | integer |
wal_block_size | integer |
bytes_per_wal_segment | integer |
max_identifier_length | integer |
max_index_columns | integer |
max_toast_chunk_size | integer |
large_object_chunk_size | integer |
float8_pass_by_value | boolean |
data_page_checksum_version | integer |
表9.90 pg_control_recovery
の出力列
列名 | データ型 |
---|---|
min_recovery_end_lsn | pg_lsn |
min_recovery_end_timeline | integer |
backup_start_lsn | pg_lsn |
backup_end_lsn | pg_lsn |
end_of_backup_record_required | boolean |
The functions shown in <xref linkend="functions-version"/> print version information. 《機械翻訳》表 9.91に示す関数は、バージョン情報を出力します。
表9.91 Version Information Functions
Function 関数 Description 説明 |
---|
Returns a string describing the <productname>PostgreSQL</productname>
server's version. You can also get this information from
<xref linkend="guc-server-version"/>, or for a machine-readable
version use <xref linkend="guc-server-version-num"/>. Software
developers should use <varname>server_version_num</varname> (available
since 8.2) or <xref linkend="libpq-PQserverVersion"/> instead of
parsing the text version.
PostgreSQLサーバのバージョンを説明する文字列を返します。
情報はserver_versionからも得られます。
機械読み取り可能なバージョンはserver_version_numを使ってください。
ソフトウェア開発者は文字列バージョンを解析するのではなく、 |
Returns a string representing the version of Unicode used by <productname>PostgreSQL</productname>. 《機械翻訳》PostgreSQLが使用するユニコードのバージョンを表す文字列を返します。 |
Returns a string representing the version of Unicode used by ICU, if
the server was built with ICU support; otherwise returns
<literal>NULL</literal> </para></entry>
《機械翻訳》サーバが ICU サポート付きで構築された場合は ICU が使用する Unicodeのバージョンを表す文字列を返し、そうでない場合は |
The functions shown in <xref linkend="functions-wal-summary"/> print information about the status of WAL summarization. See <xref linkend="guc-summarize-wal" />. 《機械翻訳》表 9.92に示す関数は、WAL要約の状態に関する情報を出力します。 summarize_walを参照してください。
表9.92 WAL Summarization Information Functions