I have two schema Salary & Emp_dtl.
In Schema Salary i have function get_salary_dtl.
Now i am using get_salary_dtl in schema B.
select get_salary_dtl('test');
i am getting error function doesn't exists. Search path is set for schema B with schema A and all grants provided. Same working in Pg admin4.
in toad edge its working if i use like below.
select salary.get_salary_dtl('test');
May i know what is the issue in Toad Edge.