Обсуждение: pgsql: Fetch XIDs atomically during vac_truncate_clog().

Поиск
Список
Период
Сортировка

pgsql: Fetch XIDs atomically during vac_truncate_clog().

От
Tom Lane
Дата:
Fetch XIDs atomically during vac_truncate_clog().

Because vac_update_datfrozenxid() updates datfrozenxid and datminmxid
in-place, it's unsafe to assume that successive reads of those values will
give consistent results.  Fetch each one just once to ensure sane behavior
in the minimum calculation.  Noted while reviewing Alexander Korotkov's
patch in the same area.

Discussion: <8564.1464116473@sss.pgh.pa.us>

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/2d2e40e3befd8b9e0d2757554537345b15fa6ea2

Modified Files
--------------
src/backend/commands/vacuum.c | 28 ++++++++++++++++++----------
1 file changed, 18 insertions(+), 10 deletions(-)