pgsql: Use AIO batchmode for bitmap heap scans - Mailing list pgsql-committers

From Melanie Plageman
Subject pgsql: Use AIO batchmode for bitmap heap scans
Date
Msg-id E1u0SzR-002WhH-1V@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Use AIO batchmode for bitmap heap scans

Previously bitmap heap scan was not AIO batchmode safe because of the
visibility map reads potentially done for the "skip fetch" optimization
(which skipped fetching tuples from the heap if the pages were all
visible and none of the columns were used in the query).

The skip fetch optimization implementation was found to have bugs and
was removed in 459e7bf8e2f8, so we can safely enable batchmode for
bitmap heap scans.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/67be093562b6b345c170417312dff22f467055ba

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


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Fix oversight in commit 0dca5d68d.
Next
From: David Rowley
Date:
Subject: Re: pgsql: Improve accounting for memory used by shared hash tables