Concept Flow - Bitmap index scan behavior
Start Query
Use Index to Find Matching Rows
Build Bitmap of Row Locations
Combine Bitmaps if Multiple Indexes
Scan Heap Using Bitmap
Return Matching Rows
End
The query planner uses indexes to find matching rows, builds a bitmap of their locations, then scans the table efficiently using this bitmap to return results.