Re: Trigger Question

From: "ezra epstein" <ee_newsgroup_post(at)prajnait(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Trigger Question
Date: 2004-01-14 19:23:40
Message-ID: 6aucnfUHzd6aCpjdXTWc-w@speakeasy.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-novice

Raising an exception means the return statement is never reached, so never
executed, so not relevant. Just like exceptions in other languages.

Yes, an exception will abort the transaction and stop further processing.

You may still want to conditionally return NULL instead of NEW (or OLD) on
some trigger-invoked SPs, but that has nothing to do with exceptions (the 2
are mutually exclusive).

== Ezra Epstein

"Terry Lee Tucker" <terry(at)esc1(dot)com> wrote in message
news:200401111713(dot)54786(dot)terry(at)esc1(dot)com(dot)(dot)(dot)
Hi,

I have a simple question. I have been looking at the HTML docs for Postgres
version: PostgreSQL 7.2.3-RH on i686-pc-linux-gnu, compiled by GCC 2.96. I
need to know if it is necessary to RETURN NULL from a trigger function after
raising an exception with RAISE EXCEPTION. We are doing many different data
validations in a "BEFORE UPDATE OR INSERT" trigger and we have been raising
an exception with an error string such that the error comes back to the
X-Windows applicaton. I read that returning NULL prevents other triggers
from
fireing but doesn't RAISE EXCEPTION abort the tranaction and cause all
processing to stop?

Thanks in advance for your help...
--
"The world we have created is a product of our thinking. It cannot be
changed without changing our thinking."

--Albert Einstein

Work: 1-336-372-6812
Cell: 1-336-363-4719
email: terry(at)esc1(dot)com

---------------------------(end of broadcast)---------------------------
TIP 6: Have you searched our list archives?

http://archives.postgresql.org

In response to

Browse pgsql-general by date

  From Date Subject
Next Message ezra epstein 2004-01-14 19:26:18 Re: sequence incrementing twice
Previous Message Tom Lane 2004-01-14 19:18:35 Re: Rights in 7.4

Browse pgsql-novice by date

  From Date Subject
Next Message Tom Lane 2004-01-14 19:24:16 Re: parser-error
Previous Message Stephan Szabo 2004-01-14 19:01:30 Re: Inheritance and foreign keys