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?.
3 rows affected
3 rows affected
id | parentid | mount |
---|---|---|
1-1 | 1 | 1 |
1-2 | 1 | 1 |
1-3 | 1 | 1 |
id | stock |
---|---|
1-1 | 1500 |
1-2 | 11793 |
1-3 | 1934 |
id | parentid | mount | stock | prod |
---|---|---|---|---|
1-1 | 1 | 1 | 1500 | 1500 |
1-2 | 1 | 1 | 11793 | 11793 |
1-3 | 1 | 1 | 1934 | 1934 |
min |
---|
1500 |