Re: ERROR: deferredTriggerGetPreviousEvent: event for tuple (0, 9) not found

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: kristis(dot)makris(at)datasoft(dot)com, pgsql-bugs(at)postgresql(dot)org
Subject: Re: ERROR: deferredTriggerGetPreviousEvent: event for tuple (0, 9) not found
Date: 2001-07-11 15:21:35
Message-ID: 18395.994864895@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs pgsql-odbc pgsql-sql

pgsql-bugs(at)postgresql(dot)org writes:
> ERROR: deferredTriggerGetPreviousEvent: event for tuple (0,9) not found

Hmm, are you trying to create triggers on pg_shadow? It's hard to see
how that message could come from an "UPDATE pg_shadow" otherwise.

Triggers on system catalogs don't work very well, because they won't
be invoked as a side effect of system-initiated operations. In this
situation, it appears that the trigger code sees that the pg_shadow row
was inserted in the current transaction, so it tries to look up the row
in the list of pending trigger events --- and doesn't find an entry,
because CREATE USER didn't invoke the trigger code.

In a perfect world we'd support user-defined triggers on the system
catalogs, but given the potential circularity problems, I doubt it's
going to happen real soon. I'd suggest finding another approach.

regards, tom lane

In response to

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Kristis Makris 2001-07-11 16:04:45 Re: ERROR: deferredTriggerGetPreviousEvent: event for tuple (0,9) not found
Previous Message Peter Eisentraut 2001-07-11 15:19:27 Re: shared library compile error

Browse pgsql-odbc by date

  From Date Subject
Next Message Kristis Makris 2001-07-11 16:04:45 Re: ERROR: deferredTriggerGetPreviousEvent: event for tuple (0,9) not found
Previous Message Edward Thomas 2001-07-11 13:19:41 Data export using Microsoft Access

Browse pgsql-sql by date

  From Date Subject
Next Message Kristis Makris 2001-07-11 16:04:45 Re: ERROR: deferredTriggerGetPreviousEvent: event for tuple (0,9) not found
Previous Message Jeff Eckermann 2001-07-11 15:19:19 RE: can we write to a flat file from Postgresql procedure