You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@age.apache.org by GitBox <gi...@apache.org> on 2021/05/06 09:24:52 UTC

[GitHub] [incubator-age] pdpotter commented on issue #64: explain execution plan display

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:
users@infra.apache.org