More than one PL Function with same name present in Database
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';