File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
docs/source/user-guide/sql Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ EXPLAIN [ANALYZE] [VERBOSE] [FORMAT format] statement
3131
3232Shows the execution plan of a statement.
3333If 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
239241EXPLAIN ANALYZE SELECT SUM (x) FROM table GROUP BY b;
You can’t perform that action at this time.
0 commit comments