pg_partitioned_table
#
The catalog <structname>pg_partitioned_table</structname> stores
information about how tables are partitioned.
カタログpg_partitioned_table
はテーブルがどのようにパーティションに分けられているかに関する情報を格納します。
表51.37 pg_partitioned_table
の列
Column Type 列 型 Description 説明 |
---|
The OID of the <link linkend="catalog-pg-class"><structname>pg_class</structname></link> entry for this partitioned table
このパーティションテーブルの |
Partitioning strategy; <literal>h</literal> = hash partitioned table,
<literal>l</literal> = list partitioned table, <literal>r</literal> = range partitioned table
パーティショニング戦略。
|
The number of columns in the partition key パーティションキーの列の数 |
The OID of the <link linkend="catalog-pg-class"><structname>pg_class</structname></link> entry for the default partition
of this partitioned table, or zero if this partitioned table does not
have a default partition
このパーティションのデフォルトパーティションの |
This is an array of <structfield>partnatts</structfield> values that
indicate which table columns are part of the partition key. For
example, a value of <literal>1 3</literal> would mean that the first
and the third table columns make up the partition key. A zero in this
array indicates that the corresponding partition key column is an
expression, rather than a simple column reference.
これは |
For each column in the partition key, this contains the OID of the
operator class to use. See
<link linkend="catalog-pg-opclass"><structname>pg_opclass</structname></link> for details.
これは、パーティションキーの各列について、使用する演算子クラスのOIDが入ります。
詳細については |
For each column in the partition key, this contains the OID of the collation to use for partitioning, or zero if the column is not of a collatable data type. これは、パーティションキーの各列について、パーティショニングで使用する照合のOIDが入ります。 列が照合できないデータ型の場合はゼロが入ります。 |
Expression trees (in <function>nodeToString()</function>
representation) for partition key columns that are not simple column
references. This is a list with one element for each zero
entry in <structfield>partattrs</structfield>. Null if all partition key columns
are simple references.
単純な列参照ではないパーティションキー列についての( |