public enum PlannerPhase extends Enum<PlannerPhase>
Enum Constant and Description |
---|
DIRECTORY_PRUNING |
JOIN_PLANNING |
LOGICAL |
LOGICAL_PRUNE |
LOGICAL_PRUNE_AND_JOIN |
PARTITION_PRUNING |
PHYSICAL |
PHYSICAL_PARTITION_PRUNING |
PRE_LOGICAL_PLANNING |
ROWKEYJOIN_CONVERSION |
SUBQUERY_REWRITE |
SUM_CONVERSION |
TRANSITIVE_CLOSURE |
WINDOW_REWRITE |
Modifier and Type | Field and Description |
---|---|
String |
description |
Modifier and Type | Method and Description |
---|---|
abstract org.apache.calcite.tools.RuleSet |
getRules(OptimizerRulesContext context,
Collection<StoragePlugin> plugins) |
static PlannerPhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PlannerPhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PlannerPhase LOGICAL_PRUNE_AND_JOIN
public static final PlannerPhase WINDOW_REWRITE
public static final PlannerPhase SUBQUERY_REWRITE
public static final PlannerPhase LOGICAL_PRUNE
public static final PlannerPhase JOIN_PLANNING
public static final PlannerPhase ROWKEYJOIN_CONVERSION
public static final PlannerPhase SUM_CONVERSION
public static final PlannerPhase PARTITION_PRUNING
public static final PlannerPhase PHYSICAL_PARTITION_PRUNING
public static final PlannerPhase DIRECTORY_PRUNING
public static final PlannerPhase LOGICAL
public static final PlannerPhase PHYSICAL
public static final PlannerPhase PRE_LOGICAL_PLANNING
public static final PlannerPhase TRANSITIVE_CLOSURE
public final String description
public static PlannerPhase[] values()
for (PlannerPhase c : PlannerPhase.values()) System.out.println(c);
public static PlannerPhase 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 nullpublic abstract org.apache.calcite.tools.RuleSet getRules(OptimizerRulesContext context, Collection<StoragePlugin> plugins)
Copyright © 1970 The Apache Software Foundation. All rights reserved.