|
|
|
|
|
by crimsonnoodle58
3 days ago
|
|
> How many of us have toggled enable_seqscan to off to force an index scan? Or thrown an OFFSET 0 into a subquery to prevent the planner from flattening it? enable_nestloop = off here. For us, joining many complex views quickly trips the planner up, so I'm really glad to see this. > They break on upgrades. The irony is so does the planner. I've seen queries working perfectly fine in older PG's suddenly run away in newer versions. So hints will actually bring stability. |
|