Re: Prevent invalid memory access in LookupFuncName

2019-06-24 Thread Michael Paquier
On Mon, Jun 24, 2019 at 11:10:54PM +0300, Alexander Lakhin wrote: > When running on REL_11_STABLE the following query: > CREATE PROCEDURE test_ambiguous_procname(int) as $$ begin end; $$ > language plpgsql; > CREATE PROCEDURE test_ambiguous_procname(text) as $$ begin end; $$ > language plpgsql; > D

Prevent invalid memory access in LookupFuncName

2019-06-24 Thread Alexander Lakhin
Hello hackers, When running on REL_11_STABLE the following query: CREATE PROCEDURE test_ambiguous_procname(int) as $$ begin end; $$ language plpgsql; CREATE PROCEDURE test_ambiguous_procname(text) as $$ begin end; $$ language plpgsql; DROP PROCEDURE test_ambiguous_procname; under valgrind I get th