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

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

非互換

FUJITSU Enterprise Postgres 14では、psqlコマンドの「\d+」の出力情報にアクセスメソッドを示す「Access method」列が追加されます。

FUJITSU Enterprise Postgres 13 SP1以前の場合

「Access method」列がありません。

[例]

=# \d+
                              List of relations
 Schema |    Name    | Type  |  Owner   | Persistence |  Size   | Description
--------+------------+-------+----------+-------------+---------+-------------
 public | btree_test | table | postgres | permanent   | 0 bytes |
 public | test_int   | table | postgres | permanent   | 48 kB   |
(2 rows)
FUJITSU Enterprise Postgres 14の場合

「Access method」列があります。

[例]

=# \d+
                                      List of relations
 Schema |    Name    | Type  |  Owner   | Persistence | Access method |  Size   | Description
--------+------------+-------+----------+-------------+---------------+---------+-------------
 public | btree_test | table | postgres | permanent   | heap          | 0 bytes |
 public | test_int   | table | postgres | permanent   | heap          | 16 kB   |
(2 rows)

対処方法

ありません。