More than one PL Function with same name present in Database


Varsha Kamble

2021-12-20 17:10:34


If there are two pl function with same name it shows error message 

more than one function named "plname"

for this issue kindly use this sql to see both pl functions :

select pg_get_functiondef(oid) from pg_proc where proname = 'plname';

Ex. select pg_get_functiondef(oid) from pg_proc where proname = 'ledconf';




Related Articles