pdpotter commented on issue #64: URL: https://github.com/apache/incubator-age/issues/64#issuecomment-833376318
The [auto_explain](https://www.postgresql.org/docs/11/auto-explain.html) module can be used to get details about nested statements. ``` LOAD 'auto_explain'; SET auto_explain.log_min_duration = 0; SET auto_explain.log_analyze = true; SET auto_explain.log_nested_statements = true; ``` In my case, the info was written to the log file `/var/log/postgresql/postgresql-11-main.log`. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
