Re: About subxact and xact nesting level... - Mailing list pgsql-hackers

From Tom Lane
Subject Re: About subxact and xact nesting level...
Date
Msg-id 29564.1462154426@sss.pgh.pa.us
Whole thread Raw
In response to Re: About subxact and xact nesting level...  (Thomas Munro <thomas.munro@enterprisedb.com>)
Responses Re: About subxact and xact nesting level...  ("dandl" <david@andl.org>)
List pgsql-hackers
Thomas Munro <thomas.munro@enterprisedb.com> writes:
> On Mon, May 2, 2016 at 12:24 PM,  <david@andl.org> wrote:
>> The file xact.c contains references to sub-transactions (subxact) and
>> transaction nesting level, but no obvious documentation about what these
>> correspond to in SQL.

> Subtransactions are used to implement SAVEPOINT, and also BEGIN blocks
> with EXCEPTION clauses in plpgsql.

Yeah.  The implementation is based on nested subtransactions, and that
concept also applies pretty directly to, eg, BEGIN/EXCEPT blocks in
plpgsql.  But what's exposed to SQL is SAVEPOINT/RELEASE SAVEPOINT/
ROLLBACK TO SAVEPOINT, because those operations are what the standard
specifies.  If you hold your head at the correct angle you can see those
as nested subtransactions, but it's not exactly obvious --- mainly because
RELEASE and ROLLBACK can exit multiple levels of nested subtransaction in
one command.
        regards, tom lane



pgsql-hackers by date:

Previous
From: Thomas Munro
Date:
Subject: Re: About subxact and xact nesting level...
Next
From: "McCoy, Shawn"
Date:
Subject: Need help debugging why autovacuum seems "stuck" -- until I use superuser to vacuum freeze pg_database