PostgreSQL - Performance Tuning
Given a table 'products' with 1 million rows and an index on 'category_id', what scan will PostgreSQL likely use for this query?
SELECT * FROM products WHERE category_id = 10;
