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

Поиск
Список
Период
Сортировка
От Murtuza Zabuawala
Тема [pgadmin-hackers] [pgAdmin4][PATCH] To fix the issue in server stats sql (PPAS9.2)
Дата
Msg-id CAKKotZS3rgwT2H7iDx0vuxc3t+1s1eP=wXWSk7Aru1FxoBS6xQ@mail.gmail.com
обсуждение исходный текст
Ответы Re: [pgadmin-hackers] [pgAdmin4][PATCH] To fix the issue in serverstats sql (PPAS9.2)  (Dave Page <dpage@pgadmin.org>)
Список 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

Вложения

В списке pgadmin-hackers по дате отправления:

Предыдущее
От: Dave Page
Дата:
Сообщение: Re: [pgadmin-hackers] Re: Server side cursor limitations for ondemand loading of data in query tool [RM2137] [pgAdmin4]
Следующее
От: Murtuza Zabuawala
Дата:
Сообщение: Re: [pgadmin-hackers] [pgAdmin4][PATCH] To fix the issue with Node rename