Re: Problems Testing User-Defined Function

From: "Jim Buttafuoco" <jim(at)contactbda(dot)com>
To: "Rommel the iCeMAn" <icecrew(at)gmail(dot)com>, "PostgreSQL SQL Mailing List" <pgsql-sql(at)postgresql(dot)org>
Subject: Re: Problems Testing User-Defined Function
Date: 2006-06-09 21:45:23
Message-ID: 20060609214325.M61129@contactbda.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

You will have to use the "CALLED ON NULL INPUT" option to "create function" (Postgresql 8.1, I don't know about other
versions) if you expect NULL arguments.

Jim

---------- Original Message -----------
From: "Rommel the iCeMAn" <icecrew(at)gmail(dot)com>
To: "PostgreSQL SQL Mailing List" <pgsql-sql(at)postgresql(dot)org>
Sent: Fri, 9 Jun 2006 16:01:26 -0400
Subject: [SQL] Problems Testing User-Defined Function

> Hi list,
>
> I'm a newbie and I have a problem. I've defined the following function using
> pgAdmin but I am clueless as to how I can test it. I will eventually be
> calling this function from a .NET application but I want to test it using
> raw SQL first. Here's the function definition:
>
> CREATE OR REPLACE FUNCTION sp_insert_manifest(_sender varchar(255),
> _sender_email varchar(255),
> _reply_to varchar(255),
> _filename varchar(255),
> _file oid,
> _datetime_sent timestamp) RETURNS integer AS $$
>
> -- blah blah --
>
> $$ LANGUAGE plpgsql;
>
> I am trying to pass the following values to the function but I have been so
> far unsuccessful.
>
> SELECT sp_insert_manifest('me', me(at)you(dot)com', 'me(at)you(dot)com', 'test.txt', NULL,
> '2006/06/09')
>
> Can anyone help me here?
>
> Thanks,
> Rommel the iCeMAn.
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: don't forget to increase your free space map settings
------- End of Original Message -------

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Rommel the iCeMAn 2006-06-10 01:19:51 Re: Problems Testing User-Defined Function
Previous Message George Weaver 2006-06-09 20:33:31 Re: Problems Testing User-Defined Function