The following bug has been logged on the website:
Bug reference: 17454
Logged by: Laowu wong
Email address: thbytwo@live.cn
PostgreSQL version: 14.2
Operating system: centos 7
Description:
It should return the server port when I execute 'select inet_server_port();'
with the command line 'psql -p 15431'.
It seems that if I do not enter the ipv4 address in the
psql-command-line,the pg will return null.
the current behavior:
[postgres@pc67 ~]$ /home/postgres/pgREL1402/bin/psql -p 15431
psql (14.2)
Type "help" for help.
postgres=# select inet_server_port();
inet_server_port
------------------
(1 row)
the expected:
[postgres@pc67 ~]$ /home/postgres/pgREL1402/bin/psql -p 15431
psql (14.2)
Type "help" for help.
postgres=# select inet_server_port();
inet_server_port
------------------
15431
(1 row)
the env:
centos 7 x86
PG14.2