pgsql: Deduplicate PageIsNew() check in lazy_scan_heap().

Поиск
Список
Период
Сортировка
От Andres Freund
Тема pgsql: Deduplicate PageIsNew() check in lazy_scan_heap().
Дата
Msg-id E1jJ1gO-0003wo-Sb@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
Deduplicate PageIsNew() check in lazy_scan_heap().

The recheck isn't needed anymore, as RelationGetBufferForTuple() now
extends the relation with RBM_ZERO_AND_LOCK. Previously we needed to
handle the fact that relation extension extended the relation and then
separately acquired a lock on the page - while expecting that the page
is empty.

Reported-By: Ranier Vilela
Discussion: https://postgr.es/m/CAEudQArA_=J0D5T258xsCY6Xtf6wiH4b=QDPDgVS+WZUN10WDw@mail.gmail.com

Branch
------
master

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

Modified Files
--------------
src/backend/access/heap/vacuumlazy.c | 32 +++++++++++---------------------
1 file changed, 11 insertions(+), 21 deletions(-)


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

Предыдущее
От: Alexander Korotkov
Дата:
Сообщение: pgsql: Fix missing SP-GiST support in 911e702077
Следующее
От: Andres Freund
Дата:
Сообщение: Re: pgsql: Implement operator class parameters