Hi,
PFA minor patch to fix the in server stats sql where it was fails to
execute because it is not able to concat inet (type) when using with ||
operator.
*Fails:*
select client_addr || ':' || client_port from pg_stat_activity
*Works:*
select client_addr::text || ':' || client_port from pg_stat_activity
Fixes RM#1831
--
Regards,
Murtuza Zabuawala
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company