Re: Trigger Problems

From: "Jim C(dot) Nasby" <decibel(at)decibel(dot)org>
To: Jamie Deppeler <jamie(at)doitonce(dot)net(dot)au>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Trigger Problems
Date: 2004-12-01 00:39:23
Message-ID: 20041201003923.GS41545@decibel.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

That is probably because you created test2(INTEGER) and you're trying to
call test2(TEXT).

On Wed, Dec 01, 2004 at 11:22:41AM +1100, Jamie Deppeler wrote:
> Hi , i have designed a trigger function called test2(Integer)
>
> im trying to use it with a trigger but get errors that function cannot
> be found
>
> Trigger statement is
>
> CREATE TRIGGER "new_trigger566" BEFORE INSERT
> ON "customer" FOR EACH ROW
> EXECUTE PROCEDURE test2("primary");
>
>
> get the error test2() cannot be found
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: Have you checked our extensive FAQ?
>
> http://www.postgresql.org/docs/faqs/FAQ.html
>

--
Jim C. Nasby, Database Consultant decibel(at)decibel(dot)org
Give your computer some brain candy! www.distributed.net Team #1828

Windows: "Where do you want to go today?"
Linux: "Where do you want to go tomorrow?"
FreeBSD: "Are you guys coming, or what?"

In response to

Browse pgsql-general by date

  From Date Subject
Next Message gnari 2004-12-01 00:47:55 Re: change natural column order
Previous Message Jamie Deppeler 2004-12-01 00:22:41 Trigger Problems