Re: [PATCHES] Continue transactions after errors in - Mailing list pgsql-hackers

From Philip Warner
Subject Re: [PATCHES] Continue transactions after errors in
Date
Msg-id 6.2.0.14.0.20050427004454.053d5e48@203.8.195.10
Whole thread Raw
In response to Re: [PATCHES] Continue transactions after errors in psql  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: [PATCHES] Continue transactions after errors in psql
List pgsql-hackers
At 12:28 AM 27/04/2005, Tom Lane wrote:
>Can you show a plausible use-case for such a thing?

A not-uncommon case in other DBs is to handle insert/update code where
insert is the most likely result. Not sure if this is relevant to scripts:

Begin;
...do stuff...
insert into....
<trap duplicate index error and do update instead>
update...
...more stuff...
commit;


Also, the blunder-on-regardless approach is popular in pg_dump, or so I'm
told ;-).


----------------------------------------------------------------
Philip Warner                    |     __---_____
Albatross Consulting Pty. Ltd.   |----/       -  \
(A.B.N. 75 008 659 498)          |          /(@)   ______---_
Tel: (+61) 0500 83 82 81         |                 _________  \
Fax: (+61) 03 5330 3172          |                 ___________ |
Http://www.rhyme.com.au          |                /           \|
                                  |    --________--
PGP key available upon request,  |  /
and from pgp.mit.edu:11371       |/


pgsql-hackers by date:

Previous
From: Harald Fuchs
Date:
Subject: Re: Continue transactions after errors in psql
Next
From: Tom Lane
Date:
Subject: btree_gist regression tests failing in 8.0 branch?