[pgAdmin4][PATCH] To fix the issue in server stats sql (PPAS9.2)

From: Murtuza Zabuawala <murtuza(dot)zabuawala(at)enterprisedb(dot)com>
To: pgadmin-hackers <pgadmin-hackers(at)postgresql(dot)org>
Subject: [pgAdmin4][PATCH] To fix the issue in server stats sql (PPAS9.2)
Date: 2017-05-16 15:43:09
Message-ID: CAKKotZS3rgwT2H7iDx0vuxc3t+1s1eP=wXWSk7Aru1FxoBS6xQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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 Content-Type Size
fix_server_stats.diff text/plain 3.3 KB

Responses

Browse pgadmin-hackers by date

  From Date Subject
Next Message Murtuza Zabuawala 2017-05-17 06:58:55 Re: [pgAdmin4][PATCH] To fix the issue with Node rename
Previous Message Dave Page 2017-05-16 14:44:39 Re: Re: Server side cursor limitations for on demand loading of data in query tool [RM2137] [pgAdmin4]