Re: ON ERROR triggers

Поиск
Список
Период
Сортировка
От Holger Krug
Тема Re: ON ERROR triggers
Дата
Msg-id 20020107084851.B1148@dev12.rationalizer.com
обсуждение исходный текст
Ответ на Re: ON ERROR triggers  ("Mikheev, Vadim" <vmikheev@SECTORBASE.COM>)
Список pgsql-hackers
On Fri, Jan 04, 2002 at 11:48:26AM -0800, Mikheev, Vadim wrote:
> > 2) Allow a transaction to be marked for rollback, in which case
> >    it proceeds but rolls back at commit time. It is not possible
> 
> Sorry, can you explain one more time what's the point to continue
> make changes in transaction which will be rolled back?

I think, I can.

The point is to collect comprehensive error reports, mainly about
failed modifications of complex structured data which is
created/modified concurrently by several workers in an optimistic
locking fashion. Because the data is so complex it won't help anybody
if you print out a message as "index xy violated by tuple ab". Hence I
want to collect all the errors to give the application/the user the
possibility to make an overall assessment about what has to be done to
avoid the error.

This is also the reason, why I will insert a DUPKEY into an index
after having marked the transaction for rollback (see my answer to
Jan's mail). I deem this will give more informative error reports. I
simply execute all, what the user wants to be done, and inform the
user about all the errors occurring, not only the first one.

Imagine CVS would inform you only about 1 conflict each time you asks to
be informed about potential conflicts. Wouldn't it be annoying ? For
sure, it would. Now think about databases.
> How about savepoints?

This would be my question to you: How about savepoints ?
Do they help to achieve what I want to achieve ?

-- 
Holger Krug
hkrug@rationalizer.com


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Holger Krug
Дата:
Сообщение: Re: ON ERROR triggers
Следующее
От: Tom Lane
Дата:
Сообщение: Re: LWLock contention: I think I understand the problem