public static enum SharedWorkOptimizer.Mode extends Enum<SharedWorkOptimizer.Mode>
| Enum Constant and Description |
|---|
DPPUnion
Fuses two filtered table scans into a single one.
|
RemoveSemijoin
Merges a filtered scan into a non-filtered scan.
|
SubtreeMerge
Merges two identical subtrees.
|
| Modifier and Type | Method and Description |
|---|---|
static SharedWorkOptimizer.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SharedWorkOptimizer.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SharedWorkOptimizer.Mode SubtreeMerge
public static final SharedWorkOptimizer.Mode RemoveSemijoin
public static final SharedWorkOptimizer.Mode DPPUnion
public static SharedWorkOptimizer.Mode[] values()
for (SharedWorkOptimizer.Mode c : SharedWorkOptimizer.Mode.values()) System.out.println(c);
public static SharedWorkOptimizer.Mode 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 © 2024 The Apache Software Foundation. All rights reserved.