Is there a way to get both the plan and the results? - Mailing list pgsql-general

From François Beausoleil
Subject Is there a way to get both the plan and the results?
Date
Msg-id 66C5A79A-5E70-4082-BBEF-619FB1FE2CF7@teksol.info
Whole thread Raw
Responses Re: Is there a way to get both the plan and the results?  (David G Johnston <david.g.johnston@gmail.com>)
List pgsql-general
Hi all!

Building a small tool, and it would be super useful if I could get both the query results and the plan at the same
time.At the moment, the tool accepts a SQL query, drops it into a file and call psql --file=whatever.sql. I can change
touse a lower-level API if necessary. 

Ideally, I’d like to do something like EXLAIN (ANALYZE, RESULTS) SELECT ...

I’m talking about multi-minute queries, so it’s less than ideal if I have to run the query twice: once for EXPLAIN
ANALYZE,once for the actual results. 

Looking around, https://duckduckgo.com/?q=postgresql+get+query+results+and+query+plan+in+single+call doesn’t return
anythinguseful. Google neither, for that matter. The PG mailing list archives seem to not have any results on that. 

I’m specifically using 9.1. Not opposed to upgrade if necessary.

Thanks!
François Beausoleil



pgsql-general by date:

Previous
From: Jonathan Vanasco
Date:
Subject: Re: improving speed of query that uses a multi-column "filter" ?
Next
From: David G Johnston
Date:
Subject: Re: Is there a way to get both the plan and the results?