@PublicEvolving public enum ExplainDetail extends Enum<ExplainDetail>
Enum Constant and Description |
---|
CHANGELOG_MODE
The changelog mode produced by a physical rel node. e.g.
|
ESTIMATED_COST
The cost information on physical rel node estimated by optimizer. e.g.
|
JSON_EXECUTION_PLAN
The execution plan in json format of the program.
|
PLAN_ADVICE
The potential risk warnings and SQL optimizer tuning advice analyzed from the physical plan.
|
Modifier and Type | Method and Description |
---|---|
static ExplainDetail |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExplainDetail[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExplainDetail ESTIMATED_COST
public static final ExplainDetail CHANGELOG_MODE
public static final ExplainDetail JSON_EXECUTION_PLAN
public static final ExplainDetail PLAN_ADVICE
public static ExplainDetail[] values()
for (ExplainDetail c : ExplainDetail.values()) System.out.println(c);
public static ExplainDetail valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2014–2024 The Apache Software Foundation. All rights reserved.