"David G. Johnston" <david.g.johnston@xxxxxxxxx> writes: > On Sat, Oct 19, 2024 at 10:43 AM Vijaykumar Jain < > vijaykumarjain.github@xxxxxxxxx> wrote: >> i tried to check the code for auto_explain , there is nothing that helps >> understand why it was provided as a separate . > Probably because output to log was easier than reworking the internals to > make output to client happen. The reason that auto_explain exists is to capture plans for queries that are being issued by real applications --- which aren't programmed to issue EXPLAIN for themselves, and likely don't have a good place to put the data if they did. Also, auto_explain can capture runtime details for queries that are really being executed and delivering results, whereas EXPLAIN ANALYZE doesn't deliver the query results and thus can't be shoehorned into real applications. So it's partly a matter of not having a protocol spec that would allow the EXPLAIN data to be delivered on a side channel, but mostly a recognition that rewriting applications to capture such data would be painful. regards, tom lane