BitmapIndexScans
Bitmap index scans are a database query optimization technique used to efficiently retrieve rows that satisfy multiple conditions, particularly when those conditions involve low-cardinality columns. A bitmap index stores, for each distinct value in a column, a bitmap. Each bit in this bitmap corresponds to a row in the table, and its value indicates whether that row has the corresponding value for that column.
When a query involves multiple `AND` conditions on columns that have bitmap indexes, the database can perform
The advantage of bitmap index scans lies in their speed for complex queries with multiple predicates. They
However, bitmap index scans can be less efficient for high-cardinality columns or when dealing with frequent