Skip to content

Commit 568d455

Browse files
yibin87hfxsd
andauthored
Update sql-statements/sql-statement-explain-analyze.md
Co-authored-by: xixirangrang <[email protected]>
1 parent 1414b1f commit 568d455

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

sql-statements/sql-statement-explain-analyze.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Different from `EXPLAIN`, `EXPLAIN ANALYZE` executes the corresponding SQL state
3939
| attribute name | description |
4040
|:----------------|:---------------------------------|
4141
| `actRows` | Number of rows output by the operator. |
42-
| `execution info` | Execution information of the operator. `time` represents the total `wall time` from entering the operator to leaving the operator, including the total execution time of all sub-operators. If the operator is called many times by the parent operator (in loops), then the time refers to the accumulated time. `loops` is the number of times the current operator is called by the parent operator. `open` represents the time required for operator initialization. `close` represents the time from the operator processing all data to the operator ending. The time counted by `time` includes the time of `open` and `close`. When the operator is executed concurrently, the execution information will show the sum of all used `wall time`. At this time, `time`, `open` and `close` will be replaced with `total_time`, `total_open` and `total_close`. |
42+
| `execution info` | Execution information of the operator. `time` represents the total `wall time` from entering the operator to leaving the operator, including the total execution time of all sub-operators. If the operator is called many times by the parent operator (in loops), then the time refers to the accumulated time. `loops` is the number of times the current operator is called by the parent operator. `open` represents the time spent initializing the operator. `close` refers to the time taken from when the operator finishes processing data to when it ends. The `time` value includes both `open` and `close` time. When the operator is executed concurrently, the execution information shows the sum of all used `wall time`. In this case, `time`, `open`, and `close` are replaced with `total_time`, `total_open`, and `total_close`. |
4343
| `memory` | Max memory space occupied by the operator. |
4444
| `disk` | Max disk space occupied by the operator. |
4545

0 commit comments

Comments
 (0)