From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Martijn van Oosterhout <kleptog(at)svana(dot)org> |
Cc: | Cristian Prieto <cristian(at)clickdiario(dot)com>, pgsql-general(at)postgresql(dot)org |
Subject: | Re: Hello... |
Date: | 2005-02-11 22:40:56 |
Message-ID: | 15710.1108161656@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
Martijn van Oosterhout <kleptog(at)svana(dot)org> writes:
> Here's the function definition:
>> CREATE OR REPLACE FUNCTION "public"."sp_insert_users_new" (varchar, varch=
> ar,
>> varchar, varchar, smallint, date, smallint, smallint, varchar, varchar,
>> varchar, varchar, varchar, varchar, varchar) RETURNS integer AS
> As here's your error message:
>> ERROR: function public.sp_insert_users_new("unknown", "unknown", "unknow=
> n",
>> "unknown", "unknown", "unknown", integer, "unknown", "unknown", "unknown",
>> "unknown", "unknown", "unknown", "unknown", "unknown") does not exist
> It's looking for a function which accepts and integer in the 7th column
> you havn't define one. Check your function call...
The function call probably looks like ..., 42, ... and since integer
doesn't implicitly cast to smallint, it doesn't match. It would be
smarter to declare the function as taking integer; if you really want
it to take smallint, you'll need to quote or cast the arguments.
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | David Parker | 2005-02-11 22:56:48 | file descriptors |
Previous Message | Martijn van Oosterhout | 2005-02-11 22:25:06 | Re: Hello... |