This statement returns the logical plan and physical execution plan for the SQL statement.
1 | EXPLAIN [EXTENDED | CODEGEN] statement; |
EXTENDED: After this keyword is specified, the logical and physical plans are outputted at the same time.
CODEGEN: After this keyword is specified, code generated by using the Codegen is also outputted.
None
To return the logical and physical plans of SELECT * FROM test, run the following statement:
1 | EXPLAIN EXTENDED select * from test; |