Re: [HACKERS] dblink module printing unnamed connection (with commit acaf7ccb94)

2017-03-28 Thread Peter Eisentraut
On 3/23/17 01:38, Rushabh Lathia wrote: > DBLINK contrib module started showing :"unnamed" connection name. > Before this, macro used to assign the conname local variable; I quickly > worked > on the fix and attached patch do fix the issues. Patch assign the conname > local variable, so that

[HACKERS] dblink module printing unnamed connection (with commit acaf7ccb94)

2017-03-22 Thread Rushabh Lathia
Hi All, DBLINK contrib module started showing :"unnamed" connection name. Consider the below test: postgres=# CREATE ROLE alice NOSUPERUSER NOCREATEDB NOCREATEROLE LOGIN PASSWORD 'wonderland'; CREATE ROLE postgres=# GRANT EXECUTE ON FUNCTION dblink_connect_u(text,text) to alice; GRANT