pgsql: Fix old visibility bug in HeapTupleSatisfiesDirty

Поиск
Список
Период
Сортировка
От Alvaro Herrera
Тема pgsql: Fix old visibility bug in HeapTupleSatisfiesDirty
Дата
Msg-id E1V5Mcz-0001by-UT@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix old visibility bug in HeapTupleSatisfiesDirty

If a tuple is locked but not updated by a concurrent transaction,
HeapTupleSatisfiesDirty would return that transaction's Xid in xmax,
causing callers to wait on it, when it is not necessary (in fact, if the
other transaction had used a multixact instead of a plain Xid to mark
the tuple, HeapTupleSatisfiesDirty would have behave differently and
*not* returned the Xmax).

This bug was introduced in commit 3f7fbf85dc5b42, dated December 1998,
so it's almost 15 years old now.  However, it's hard to see this
misbehave, because before we had NOWAIT the only consequence of this is
that transactions would wait for slightly more time than necessary; so
it's not surprising that this hasn't been reported yet.

Craig Ringer and Andres Freund

Branch
------
REL9_0_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/646b12115a81604fe083d555441d50c8967cee5f

Modified Files
--------------
src/backend/utils/time/tqual.c |    3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)


В списке pgsql-committers по дате отправления:

Предыдущее
От: Alvaro Herrera
Дата:
Сообщение: pgsql: Fix crash in error report of invalid tuple lock
Следующее
От: Alvaro Herrera
Дата:
Сообщение: pgsql: Fix old visibility bug in HeapTupleSatisfiesDirty