Postgresql – Why does the Postgres Planner show columns I don't use in my query in the "Output" section?
I'm on Postgres 15.1 and running the following query: EXPLAIN (ANALYZE, VERBOSE) WITH segmented_customer AS (SELECT * FROM customer WHERE integration_id = 162 AND (1 = 1 OR 1 = 1)), segmented_subscription AS (SELECT * FROM subscription WHERE integration_id =…