EXPLAIN
Shows generated Intermediate Representation (IR) code, identifying whether it is executed on GPU or CPU. This is primarily used internally by HEAVY.AI to monitor behavior.
For example, when you use the EXPLAIN
command on a basic statement, the utility returns 90 lines of IR code that is not meant to be human readable. However, at the top of the listing, a heading indicates whether it is IR for the CPU
or IR for the GPU
, which can be useful to know in some situations.
EXPLAIN CALCITE
Returns a relational algebra tree describing the high-level plan to execute the statement.
The table below lists the relational algebra classes used to describe the execution plan for a SQL statement.
Method | Description |
| Operator that eliminates duplicates and computes totals. |
| Expression that computes project expressions and also filters. |
| Operator that converts a stream to a relation. |
| Operator that performs nested-loop joins. |
| Operator that converts a relation to a stream. |
| Expression that imposes a particular distribution on its input without otherwise changing its content. |
| Expression that iterates over its input and returns elements for which a condition evaluates to true. |
| Expression that returns the intersection of the rows of its inputs. |
| Expression that combines two relational expressions according to some condition. |
| Expression that represents a MATCH_RECOGNIZE node. |
| Expression that returns the rows of its first input minus any matching rows from its other inputs. Corresponds to the SQL EXCEPT operator. |
| Expression that computes a set of ‘select expressions’ from its input relational expression. |
| Expression that imposes a particular sort order on its input without otherwise changing its content. |
| Expression that calls a table-valued function. |
| Expression that modifies a table. Similar to TableScan, but represents a request to modify a table instead of read from it. |
| Reads all the rows from a RelOptTable. |
| Expression that returns the union of the rows of its inputs, optionally eliminating duplicates. |
| Expression for which the value is a sequence of zero or more literal row values. |
| Expression representing a set of window aggregates. See Window Functions |
For example, a SELECT
statement is described as a table scan and projection.
If you add a sort order, the table projection is folded under a LogicalSort
procedure.
When the SQL statement is simple, the EXPLAIN CALCITE version is actually less “human readable.” EXPLAIN CALCITE is more useful when you work with more complex SQL statements, like the one that follows. This query performs a scan on the BOOK table before scanning the BOOK_ORDER table.
Revising the original SQL command results in a more natural selection order and a more performant query.
EXPLAIN CALCITE DETAILED
Augments the EXPLAIN CALCITE command by adding details about referenced columns in the query plan.
For example, for the following EXPLAIN CALCITE command execution:
EXPLAIN CALCITE DETAILED adds more column details as seen below:
Last updated