Re: Auto-Rollback option

From: John R Pierce <pierce(at)hogranch(dot)com>
To: pgsql-general(at)postgresql(dot)org
Subject: Re: Auto-Rollback option
Date: 2017-02-13 17:59:17
Message-ID: 981edfaf-6cdb-3fdb-32b4-54653e2f68c5@hogranch.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 2/13/2017 7:15 AM, mpomykacz wrote:
> So my problem is like this:
>
> I start the transaction with BEGIN TRANSACTION;
> Then I have for example some INSERTs to DB
> and at the end COMMIT; and END TRANSACTION;

COMMIT ends the transaction. In PostgreSQL, END TRANSACTION is
redundant, equivalent to COMMIT, do one or the other, not both.

>
> But if one of this INSERTs causes error, the transaction will stop (but it
> is still open and next patch is implemented within the same transaction).

Patch ?

>
> When I turn the Auto-Rollback on everything is ok : in situation like this
> my transaction is automatically rollbacked and closed.

there is no autorollback option in standard PostgreSQL ?

>
> But I do not want to do the Auto-Rollback click manualy in the Option menu
> or query editor window (because I can not be sure that the person who will
> run the patch would remember about this click).

option? query editor window? what software are you talking about?

> I'm using 1.22.1 version.

1.22.1 version? PostgreSQL versions currently supported are 9.2.x to
9.6.x

--
john r pierce, recycling bits in santa cruz

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Adrian Klaver 2017-02-13 18:10:43 Re: Auto-Rollback option
Previous Message Pavel Stehule 2017-02-13 17:54:10 Re: Bad planning data resulting in OOM killing of postgres