Re: Error calling self-made plpgsql function "function XYZ(bigint) does not exist" - Mailing list pgsql-sql

From Michael Glaesemann
Subject Re: Error calling self-made plpgsql function "function XYZ(bigint) does not exist"
Date
Msg-id 324930EE-FCBC-4408-8534-01A00890FB2C@myrealbox.com
Whole thread Raw
In response to Error calling self-made plpgsql function "function XYZ(bigint) does not exist"  (Juris <bubliks@gmail.com>)
Responses Re: Error calling self-made plpgsql function "function XYZ(bigint) does not exist"  (Juris <bubliks@gmail.com>)
List pgsql-sql
On Jan 19, 2006, at 21:39 , Juris wrote:

> == sql begin ==
> CREATE OR REPLACE FUNCTION "InventGroups_GetAllParents"(int8)

> select * from InventGroups_GetAllParents(0::int8)
> =======
> ERROR:  function inventgroups_getallparents(bigint) does not exist
> HINT:  No function matches the given name and argument types. You may
> need to add explicit type casts.

If you double-quote your function name (or any identifier) when you  
create it, you'll need to double-quote them when you call the  
function as well. Try:

select * from "InventGroups_GetAllParents"(0::int8)

Michael Glaesemann
grzm myrealbox com





pgsql-sql by date:

Previous
From: Juris
Date:
Subject: Error calling self-made plpgsql function "function XYZ(bigint) does not exist"
Next
From: Juris
Date:
Subject: Re: Error calling self-made plpgsql function "function XYZ(bigint) does not exist"