Windows PostgreSQL logs messages to the Event Log under a name you choose with `event_source`—but Windows won't understand that name until you register it with…
`enable_seqscan = off` doesn't disable sequential scans—it penalizes them. The planner still uses them when it has no other option, and that's by design.
You are rarely the only thing writing your SQL. Your ORM writes some of it, your nested views write more, and sooner or later one of them joins a table to itsel
PostgreSQL 16's `enable_presorted_aggregate` defaults to on, and the only reason to turn it off is for that one query where the planner's cost model guesses…