PostgreSQL - Table Partitioning
Given a table 'orders' partitioned by RANGE on 'order_date' with partitions for 2023-01-01 to 2023-01-31 and 2023-02-01 to 2023-02-28, what partitions will be scanned by this query?
SELECT * FROM orders WHERE order_date >= '2023-01-15' AND order_date < '2023-02-10';
