pgsql: Remove extra prefetch iterator setup for Bitmap Table Scan

From: Melanie Plageman <melanieplageman(at)gmail(dot)com>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Remove extra prefetch iterator setup for Bitmap Table Scan
Date: 2024-12-19 16:57:38
Message-ID: E1tOJqE-000NlD-Er@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Remove extra prefetch iterator setup for Bitmap Table Scan

1a0da347a7ac98db replaced Bitmap Table Scan's separate private and
shared bitmap iterators with a unified iterator. It accidentally set up
the prefetch iterator twice for non-parallel bitmap table scans. Remove
the extra set up call to tbm_begin_iterate().

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/2128cebcdb2f32303baf200fa2ccb2947366c636

Modified Files
--------------
src/backend/executor/nodeBitmapHeapscan.c | 9 ---------
1 file changed, 9 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Tom Lane 2024-12-19 22:03:01 pgsql: Convert SetOp to read its inputs as outerPlan and innerPlan.
Previous Message Peter Geoghegan 2024-12-19 16:09:06 pgsql: Avoid nbtree index scan SAOP scanBehind confusion.