ページの先頭行へ戻る
Enterprise Postgres 17 リリース情報

2.2.165 psqlコマンドの\d+の出力情報の追加

非互換

FUJITSU Enterprise Postgres 14では、TOASTの圧縮方式を指定可能になりました。

そのため、psqlコマンドの「\d+」の出力情報に「Compression」列が追加されました。

FUJITSU Enterprise Postgres 13 SP1以前の場合

「Compression」列は出力されません。

[例]

=# \d+ t1
                                    Table "public.t1"
 Column |  Type   | Collation | Nullable | Default | Storage | Stats target | Description
--------+---------+-----------+----------+---------+---------+--------------+-------------
 c1     | integer |           |          |         | plain   |              |
Access method: heap
FUJITSU Enterprise Postgres 14の場合

「Compression」列が出力されます。

[例]

=# \d+ t1
                                           Table "public.t1"
 Column |  Type   | Collation | Nullable | Default | Storage | Compression | Stats target | Description
--------+---------+-----------+----------+---------+---------+-------------+--------------+-------------
 c1     | integer |           |          |         | plain   |             |              |
Access method: heap

対処方法

ありません。