Re: Fix attributes of consume_xids and consume_xids_until

2024-10-11 Thread Heikki Linnakangas
On 11/10/2024 09:59, Yushi Ogiwara wrote: Hi, I found the attributes of the functions consume_xids and consume_xids_until are incorrectly specified: - Both functions are marked as IMMUTABLE attribute, but they advance the transaction ID, which modifies the system state. Thus, they should be ma

Fix attributes of consume_xids and consume_xids_until

2024-10-10 Thread Yushi Ogiwara
Hi, I found the attributes of the functions consume_xids and consume_xids_until are incorrectly specified: - Both functions are marked as IMMUTABLE attribute, but they advance the transaction ID, which modifies the system state. Thus, they should be marked as VOLATILE. - Additionally, both