pgsql: Fix corruption of local buffer state during extend of temp relat

Поиск
Список
Период
Сортировка
От Michael Paquier
Тема pgsql: Fix corruption of local buffer state during extend of temp relat
Дата
Msg-id E1rLi75-00DdOp-Jn@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Fix corruption of local buffer state during extend of temp relation

A typo has been introduced by 31966b151e6a when updating the state of a
local buffer when a temporary relation is extended, for the case of a
block included in the relation range extended, when it is already found
in the hash table holding the local buffers.  In this case, BM_VALID
should be cleared, but the buffer state was changed so as BM_VALID
remained while clearing the other flags.

As reported on the thread, it was possible to corrupt the state of the
local buffers on ENOSPC, but the states would be corrupted on any kind
of ERROR during the relation extend (like partial writes or some other
errno).

Reported-by: Alexander Lakhin
Author: Tender Wang
Reviewed-by: Richard Guo, Alexander Lakhin, Michael Paquier
Discussion: https://postgr.es/m/18259-6e256429825dd435@postgresql.org
Backpatch-through: 16

Branch
------
REL_16_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/37c5516633c833de6bdb57a1752a2f8e8f0d5420

Modified Files
--------------
src/backend/storage/buffer/localbuf.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)


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

Предыдущее
От: Tom Lane
Дата:
Сообщение: pgsql: Teach estimate_array_length() to use statistics where available.
Следующее
От: Andrew Dunstan
Дата:
Сообщение: pgsql: Add copyright notices to a few perl scripts that don't have them