By using db<>fiddle, you agree to license everything you submit by Creative Commons CC0.
Help with an interesting Postgres question: Why isn't an Index Only Scan used on a partition accessed via the parent table?.
DROP TABLE
CREATE TABLE
INSERT 0 5
id | number | string |
---|---|---|
1 | 1 | Apple |
2 | 1 | Accordion |
3 | 2 | Banana |
4 | 2 | Banjo |
SELECT 4
id | number | string |
---|
SELECT 0