pgsql: Fix potential SSI hazard in heap_update(). - Mailing list pgsql-committers

From Thomas Munro
Subject pgsql: Fix potential SSI hazard in heap_update().
Date
Msg-id E1lW7Tp-0002aJ-Jj@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Fix potential SSI hazard in heap_update().

Commit 6f38d4dac38 failed to heed a warning about the stability of the
value pointed to by "otid".  The caller is allowed to pass in a pointer to
newtup->t_self, which will be updated during the execution of the
function.  Instead, the SSI check should use the value we copy into
oldtup.t_self near the top of the function.

Not a live bug, because newtup->t_self doesn't really get updated until
a bit later, but it was confusing and broke the rule established by the
comment.

Back-patch to 13.

Reported-by: Tom Lane <tgl@sss.pgh.pa.us>
Discussion: https://postgr.es/m/2689164.1618160085%40sss.pgh.pa.us

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/b1df6b696b759f00ebbf02e6de64e259d4be5785

Modified Files
--------------
src/backend/access/heap/heapam.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)


pgsql-committers by date:

Previous
From: Michael Paquier
Date:
Subject: Re: pgsql: Add some information about authenticated identity via log_connec
Next
From: Thomas Munro
Date:
Subject: pgsql: Fix potential SSI hazard in heap_update().