非互換
FUJITSU Enterprise Postgres 14では、libpqの接続パラメータ「authtype」と「tty」を削除します。
「authtype」と「tty」が指定できます。
[例]
$ psql "host=localhost port=5432 dbname=postgres tty=test" psql (13.1) Type "help" for help. $ psql "host=localhost port=5432 dbname=postgres authtype=password" psql (13.1) Type “help” for help.
「authtype」と「tty」が指定できません。
[例]
$ psql "host=localhost port=5432 dbname=postgres tty=test" psql: error: invalid connection option "tty" $ psql "host=localhost port=5432 dbname=postgres authtype=password" psql: error: invalid connection option "authtype"
対処方法
ありません。