PostgreSQL - Performance Tuning
Given a table
employees with an index on department_id, what will the Bitmap Index Scan do when you run:EXPLAIN SELECT * FROM employees WHERE department_id = 5;?