Uses of Class
org.apache.flink.table.api.ExplainFormat
-
Packages that use ExplainFormat Package Description org.apache.flink.table.api org.apache.flink.table.api.internal org.apache.flink.table.delegation -
-
Uses of ExplainFormat in org.apache.flink.table.api
Methods in org.apache.flink.table.api that return ExplainFormat Modifier and Type Method Description static ExplainFormat
ExplainFormat. valueOf(String name)
Returns the enum constant of this type with the specified name.static ExplainFormat[]
ExplainFormat. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.apache.flink.table.api with parameters of type ExplainFormat Modifier and Type Method Description String
Explainable. explain(ExplainFormat format, ExplainDetail... extraDetails)
Returns the AST of this object and the execution plan to compute the result of the given statement.String
TableEnvironment. explainSql(String statement, ExplainFormat format, ExplainDetail... extraDetails)
Returns the AST of the specified statement and the execution plan to compute the result of the given statement. -
Uses of ExplainFormat in org.apache.flink.table.api.internal
Methods in org.apache.flink.table.api.internal with parameters of type ExplainFormat Modifier and Type Method Description String
StatementSetImpl. explain(ExplainFormat format, ExplainDetail... extraDetails)
String
TableImpl. explain(ExplainFormat format, ExplainDetail... extraDetails)
String
TableEnvironmentImpl. explainInternal(List<Operation> operations, ExplainFormat format, ExplainDetail... extraDetails)
String
TableEnvironmentInternal. explainInternal(List<Operation> operations, ExplainFormat format, ExplainDetail... extraDetails)
Returns the AST of this table and the execution plan to compute the result of this table.String
TableEnvironmentImpl. explainSql(String statement, ExplainFormat format, ExplainDetail... extraDetails)
-
Uses of ExplainFormat in org.apache.flink.table.delegation
Methods in org.apache.flink.table.delegation with parameters of type ExplainFormat Modifier and Type Method Description String
Planner. explain(List<Operation> operations, ExplainFormat format, ExplainDetail... extraDetails)
Returns the AST of the specified Table API and SQL queries and the execution plan to compute the result of the given collection ofQueryOperation
s.
-