BUG #16486: Prompted password is ignored when password specified in connection string - Mailing list pgsql-bugs

From PG Bug reporting form
Subject BUG #16486: Prompted password is ignored when password specified in connection string
Date
Msg-id 16486-b9c93d71c02c4907@postgresql.org
Whole thread Raw
Responses Re: BUG #16486: Prompted password is ignored when password specified in connection string  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      16486
Logged by:          Alexander Lakhin
Email address:      exclusion@gmail.com
PostgreSQL version: 13beta1
Operating system:   Ubuntu 18.04
Description:

Assuming that we have the user u1 with the password p1, the following
command:
psql -U u1 'dbname=postgres password=p1' -W
prompts for a password but the input password is effectively ignored.
So if the connection string contains an invalid password:
psql -U u1 'dbname=postgres password=p2' -W
you can enter a valid password in a prompt, but still could not connect.
The documentation says:
PGPASSWORD behaves the same as the password connection parameter.

But in fact PGPASSWORD behaves differently . The following command:
PGPASSWORD="p1" psql -U u1 'dbname=postgres' -W
prompts for a password and fails if the password is wrong.
Similarly, if the environment variable contains an invalid password, it
still can be overridden with "-W".


pgsql-bugs by date:

Previous
From: Alvaro Herrera
Date:
Subject: Re:
Next
From: PG Bug reporting form
Date:
Subject: BUG #16487: EXPLAIN produces JSON with duplicate "Workers" arrays