Re: Proposal: Progressive explain - Mailing list pgsql-hackers

From Rafael Thofehrn Castro
Subject Re: Proposal: Progressive explain
Date
Msg-id CAG0ozMq48+ODFoLW4HHexN8BKHfh_4c-n2b=yH9oaUnCZNZj6Q@mail.gmail.com
Whole thread Raw
In response to Re: Proposal: Progressive explain  (Robert Haas <robertmhaas@gmail.com>)
Responses Re: Proposal: Progressive explain
Re: Proposal: Progressive explain
List pgsql-hackers
> Suppose:
> BEGIN;
> SELECT 1;
> SAVEPOINT bob;
> progressively explain something that aborts
> I think in this case we will call AbortSubTransaction(), not AbortTransaction().

Indeed. We need special treatment for subtransactions. There are 2 scenarios where
AbortSubTransaction() will be called alone and can affect progressive explains:
savepoints and PL/pgSQL exception blocks.

We don't want subxact aborts in PL/pgSQL exception blocks to perform cleanup
as the original query will continue to run and progressive explain tracking
is still applicable there.

So implementation was done based on transaction nested level. Cleanup is only
performed when AbortSubTransaction() is called in the same transaction nested
level as the one where the query is running. This covers both PL/pgSQL exception
blocks and savepoints.

Rafael.
Attachment

pgsql-hackers by date:

Previous
From: Thomas Munro
Date:
Subject: Re: AIO v2.5
Next
From: Michael Paquier
Date:
Subject: Re: sync_standbys_defined read/write race on startup