transforms
#
The view <literal>transforms</literal> contains information about the
transforms defined in the current database. More precisely, it contains a
row for each function contained in a transform (the <quote>from SQL</quote>
or <quote>to SQL</quote> function).
ビューtransforms
は現在のデータベースで定義されている変換についての情報を含んでいます。
より正確に言えば、変換に含まれる各関数(「from SQL」あるいは「to SQL」関数)について1行ずつあります。
表35.53 transforms
の列
Column Type 列 型 Description 説明 |
---|
Name of the database that contains the type the transform is for (always the current database) 変換の適用対象の型を含むデータベースの名前です(常に現在のデータベースです)。 |
Name of the schema that contains the type the transform is for 変換の適用対象の型を含むスキーマの名前です。 |
Name of the type the transform is for 変換の適用対象の型の名前です。 |
Name of the database containing the function (always the current database) 関数が含まれるデータベースの名前です(常に現在のデータベースです)。 |
Name of the schema containing the function 関数が含まれるスキーマの名前です。 |
The <quote>specific name</quote> of the function. See <xref linkend="infoschema-routines"/> for more information. 関数の「仕様名称」です。 詳細は35.45を参照してください。 |
The SQL standard allows defining transforms in <quote>groups</quote>, and selecting a group at run time. PostgreSQL does not support this. Instead, transforms are specific to a language. As a compromise, this field contains the language the transform is for. 標準SQLでは変換を「グループ」で定義して、実行時にグループを選択することを認めています。 PostgreSQLはこれをサポートしていません。 代わりに、変換は言語ごとに別々になっています。 妥協として、このフィールドには変換の対象となる言語が入っています。 |
<literal>FROM SQL</literal> or <literal>TO SQL</literal>
|