Re: Fix for consume_xids advancing XIDs incorrectly

From: Fujii Masao <masao(dot)fujii(at)oss(dot)nttdata(dot)com>
To: Yushi Ogiwara <btogiwarayuushi(at)oss(dot)nttdata(dot)com>, Masahiko Sawada <sawada(dot)mshk(at)gmail(dot)com>
Cc: Pgsql Hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: Fix for consume_xids advancing XIDs incorrectly
Date: 2024-10-29 18:09:12
Message-ID: da321d89-bc8b-4e6a-8ea6-248cf5ed4a50@oss.nttdata.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 2024/10/29 18:00, Yushi Ogiwara wrote:
>>>
>>>
>>>         consumed = XidSkip(nextXid);
>>>         if (consumed > 0)
>>>                 TransamVariables->nextXid.value += (uint64) consumed;
>>>
>>> BTW, the code snippet above in consume_xids_shortcut() could potentially set
>>> the next XID to a value below FirstNormalTransactionId? If yes, we should account for
>>> FirstNormalFullTransactionId when increasing the next XID, similar to
>>> how FullTransactionIdAdvance() handles it.
>>
>> Good catch. I agree with you. We need to do something similar to what
>> FullTransactionIdAdvance() does so that it does not appear as a
>> special 32-bit XID.
>>
>> Regards,
>
> I think this is not the case since XidSkip returns min(UINT32_MAX - 5 - low, *), which prevents the wrap-around of nextXid.

Yes, you're right. Thanks for the correction!

Regards,

--
Fujii Masao
Advanced Computing Technology Center
Research and Development Headquarters
NTT DATA CORPORATION

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Christoph Berg 2024-10-29 18:09:46 Re: RFC: Extension Packaging & Lookup
Previous Message Paul Ramsey 2024-10-29 18:03:19 Re: RFC: Extension Packaging & Lookup