非互換
Fujitsu Enterprise Postgres 15では、設定ファイルに誤った値が設定されていた場合であっても、error列にエラー内容が出力されない場合がありました。
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 | t |
(1 row)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)対処方法
ありません。