Skip to content

Commit 398cf18

Browse files
committed
Improve documentation
1 parent c965e8e commit 398cf18

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

docs/source/user-guide/sql/explain.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ EXPLAIN [ANALYZE] [VERBOSE] [FORMAT format] statement
3131

3232
Shows the execution plan of a statement.
3333
If you need more detailed output, use `EXPLAIN VERBOSE`.
34+
Note that `EXPLAIN VERBOSE` only supports the `indent` format.
3435

3536
### `indent` format (default)
3637

@@ -232,8 +233,9 @@ Elapsed 0.010 seconds.
232233

233234
## `EXPLAIN ANALYZE`
234235

235-
Shows the execution plan and metrics of a statement.
236-
If you need more information output, use `EXPLAIN ANALYZE VERBOSE`. Only the `indent` format is supported for `EXPLAIN ANALYZE`.
236+
Shows the execution plan and metrics of a statement. If you need more
237+
information output, use `EXPLAIN ANALYZE VERBOSE`. Note that `EXPLAIN ANALYZE`
238+
only supports the `indent` format.
237239

238240
```sql
239241
EXPLAIN ANALYZE SELECT SUM(x) FROM table GROUP BY b;

0 commit comments

Comments
 (0)