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

2.7.2 libpqの接続パラメータ「authtype」と「tty」の削除

非互換

FUJITSU Enterprise Postgres 14では、libpqの接続パラメータ「authtype」と「tty」を削除します。

FUJITSU Enterprise Postgres 13 SP1以前の場合

「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.
FUJITSU Enterprise Postgres 14の場合

「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"

対処方法

ありません。