BUG #17454: Using psql without ipv4 address,the inet_server_port do not return PORT. - Mailing list pgsql-bugs

From PG Bug reporting form
Subject BUG #17454: Using psql without ipv4 address,the inet_server_port do not return PORT.
Date
Msg-id 17454-f120d78fa9c3013d@postgresql.org
Whole thread Raw
Responses Re: BUG #17454: Using psql without ipv4 address,the inet_server_port do not return PORT.  ("David G. Johnston" <david.g.johnston@gmail.com>)
List pgsql-bugs
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


pgsql-bugs by date:

Previous
From: Julien Rouhaud
Date:
Subject: Re: BUG #17448: In Windows 10, version 1703 and later, huge_pages doesn't work.
Next
From: Noah Misch
Date:
Subject: Re: Reconnect a single connection used by multiple threads in embedded SQL in C application causes error.