@PublicEvolving public static enum OptimizerConfigOptions.NonDeterministicUpdateStrategy extends Enum<OptimizerConfigOptions.NonDeterministicUpdateStrategy>
Enum Constant and Description |
---|
IGNORE
Do nothing if exists non-deterministic updates, the risk of wrong result still exists.
|
TRY_RESOLVE
Try to resolve by planner automatically if exists non-deterministic updates, will raise
an error when cannot resolve.
|
Modifier and Type | Method and Description |
---|---|
static OptimizerConfigOptions.NonDeterministicUpdateStrategy |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OptimizerConfigOptions.NonDeterministicUpdateStrategy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OptimizerConfigOptions.NonDeterministicUpdateStrategy TRY_RESOLVE
public static final OptimizerConfigOptions.NonDeterministicUpdateStrategy IGNORE
public static OptimizerConfigOptions.NonDeterministicUpdateStrategy[] values()
for (OptimizerConfigOptions.NonDeterministicUpdateStrategy c : OptimizerConfigOptions.NonDeterministicUpdateStrategy.values()) System.out.println(c);
public static OptimizerConfigOptions.NonDeterministicUpdateStrategy 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.