[pgadmin-hackers] [pgAdmin4][PATCH] To fix the issue in server stats sql (PPAS9.2) - Mailing list pgadmin-hackers

From Murtuza Zabuawala
Subject [pgadmin-hackers] [pgAdmin4][PATCH] To fix the issue in server stats sql (PPAS9.2)
Date
Msg-id CAKKotZS3rgwT2H7iDx0vuxc3t+1s1eP=wXWSk7Aru1FxoBS6xQ@mail.gmail.com
Whole thread Raw
Responses Re: [pgadmin-hackers] [pgAdmin4][PATCH] To fix the issue in serverstats sql (PPAS9.2)
List pgadmin-hackers
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

Attachment

pgadmin-hackers by date:

Previous
From: Dave Page
Date:
Subject: Re: [pgadmin-hackers] Re: Server side cursor limitations for ondemand loading of data in query tool [RM2137] [pgAdmin4]
Next
From: Murtuza Zabuawala
Date:
Subject: Re: [pgadmin-hackers] [pgAdmin4][PATCH] To fix the issue with Node rename