Re: BUG #3695: Pgsql does not report non existing function - Mailing list pgsql-bugs

From Tom Lane
Subject Re: BUG #3695: Pgsql does not report non existing function
Date
Msg-id 15410.1193322974@sss.pgh.pa.us
Whole thread Raw
In response to BUG #3695: Pgsql does not report non existing function  ("Roger" <ramoloney@hotmail.com>)
List pgsql-bugs
"Roger" <ramoloney@hotmail.com> writes:
> Description:        Pgsql does not report non existing function

Works fine for me:

regression=# create function foo() returns int as $$
regression$# declare x int;
regression$# begin
regression$#   x := nosuchfunc(42);
regression$# end$$ language plpgsql;
CREATE FUNCTION
regression=# select foo();
ERROR:  function nosuchfunc(integer) does not exist
LINE 1: SELECT  nosuchfunc(42)
                ^
HINT:  No function matches the given name and argument types. You might need to add explicit type casts.
QUERY:  SELECT  nosuchfunc(42)
CONTEXT:  PL/pgSQL function "foo" line 3 at assignment
regression=#

            regards, tom lane

pgsql-bugs by date:

Previous
From: Gregory Stark
Date:
Subject: Re: Yet another problem with ILIKE and UTF-8
Next
From: "Marc Mamin"
Date:
Subject: BUG #3697: utf8 issue: can not reimport a table that was successfully exported.