Re: A few patches to clarify snapshot management - Mailing list pgsql-hackers

From Heikki Linnakangas
Subject Re: A few patches to clarify snapshot management
Date
Msg-id 0cc21d6a-32c4-4d34-9eeb-7a0cf6dca9e8@iki.fi
Whole thread Raw
In response to Re: A few patches to clarify snapshot management  (Andres Freund <andres@anarazel.de>)
List pgsql-hackers
On 07/01/2025 00:00, Andres Freund wrote:
> On 2024-12-20 19:31:01 +0200, Heikki Linnakangas wrote:
>> While playing around some more with this, I noticed that this code in
>> GetTransactionSnapshot() is never reached, and AFAICS has always been dead
>> code:
>>
>>> Snapshot
>>> GetTransactionSnapshot(void)
>>> {
>>>     /*
>>>      * Return historic snapshot if doing logical decoding. We'll never need a
>>>      * non-historic transaction snapshot in this (sub-)transaction, so there's
>>>      * no need to be careful to set one up for later calls to
>>>      * GetTransactionSnapshot().
>>>      */
>>>     if (HistoricSnapshotActive())
>>>     {
>>>         Assert(!FirstSnapshotSet);
>>>         return HistoricSnapshot;
>>>     }
>>
>> when you think about it, that's good, because it doesn't really make sense
>> to call GetTransactionSnapshot() during logical decoding. We jump through
>> hoops to make the historic catalog decoding possible with historic
>> snapshots, tracking subtransactions that modify catalogs and WAL-logging
>> command ids, but they're not suitable for general purpose queries. So I
>> think we should turn that into an error, per attached patch.
> 
> Hm. I'm not sure it's a good idea to forbid this. Couldn't there be sane C
> code in an output functions calling GetTransactionSnapshot() or such to do
> some internal lookups?

I haven't seen any. And I don't think that would work correctly while 
doing logical decoding anyway, because historical snapshots only track 
XIDs that modify catalogs. regclassout and enumout do work because they 
use the catalog snapshot rather than GetTransactionSnapshot().

(I committed that change in commit 1585ff7387 already, but discussion is 
still welcome of course)

-- 
Heikki Linnakangas
Neon (https://neon.tech)




pgsql-hackers by date:

Previous
From: Cédric Villemain
Date:
Subject: Re: PoC: history of recent vacuum/checkpoint runs (using new hooks)
Next
From: Maxim Orlov
Date:
Subject: Re: POC: make mxidoff 64 bits