Skip to content

Commit

Permalink
Fix EXPLAIN ANALYZE output format. (#1922) (#1941)
Browse files Browse the repository at this point in the history
Co-authored-by: Zhi Qi <30543181+LittleFall@users.noreply.github.com>
Co-authored-by: Keke Yi <40977455+yikeke@users.noreply.github.com>
  • Loading branch information
3 people authored Mar 9, 2020
1 parent f4c260a commit 5ab9c5a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ As an extension to `EXPLAIN`, `EXPLAIN ANALYZE` will execute the query and provi

* `loops` is the number of times the operator was called from the parent operator.

* `rows` is the total number of rows that were returned by this operator. So for example, you can compare the accuracy of the `count` column to `rows`/`loops` in the `execution_info` column to assess how accurate the query optimizer's estimations are.
* `rows` is the total number of rows that were returned by this operator. So for example, you can compare the accuracy of the `count` column to `rows` in the `execution_info` column to assess how accurate the query optimizer's estimations are.

### Example usage

Expand Down

0 comments on commit 5ab9c5a

Please sign in to comment.