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

2.3.69 pg_file_settingsビューのerror列の変更

非互換

Fujitsu Enterprise Postgres 15では、設定ファイルに誤った値が設定されていた場合であっても、error列にエラー内容が出力されない場合がありました。

Fujitsu Enterprise Postgres 16では、正しくエラー内容が出力されます。

Fujitsu Enterprise Postgres 15以前の場合
postgres=# select name,setting,applied,error from pg_file_settings where name = 'log_connections';
      name       | setting | applied | error
-----------------+---------+---------+-------
 log_connections | abc     | t       |
(1 row)
Fujitsu Enterprise Postgres 16の場合
postgres=# select name,setting,applied,error from pg_file_settings where name = 'log_connections';
      name       | setting | applied |            error
-----------------+---------+---------+------------------------------
 log_connections | abc     | f       | setting could not be applied
(1 row)

対処方法

ありません。