非互換
FUJITSU Enterprise Postgres 14では、TOASTの圧縮方式を指定可能になりました。
そのため、psqlコマンドの「\d+」の出力情報に「Compression」列が追加されました。
「Compression」列は出力されません。
[例]
=# \d+ t1
Table "public.t1" Column | Type | Collation | Nullable | Default | Storage | Stats target | Description --------+---------+-----------+----------+---------+---------+--------------+------------- c1 | integer | | | | plain | | Access method: heap
「Compression」列が出力されます。
[例]
=# \d+ t1
Table "public.t1"
Column | Type | Collation | Nullable | Default | Storage | Compression | Stats target | Description
--------+---------+-----------+----------+---------+---------+-------------+--------------+-------------
c1 | integer | | | | plain | | |
Access method: heap対処方法
ありません。