Skip to content

Commit

Permalink
Fix EXPLAIN ANALYZE output format. (pingcap#1922)
Browse files Browse the repository at this point in the history
  • Loading branch information
LittleFall authored and sre-bot committed Mar 4, 2020
1 parent 0789cb6 commit 20c0292
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 20c0292

Please sign in to comment.