public enum QueryOptimizerEnum extends Enum<QueryOptimizerEnum>
QueryHints.OPTIMIZER
Enum Constant and Description |
---|
None
The query optimizer is disabled.
|
Runtime
A runtime query optimizer based on sampling.
|
Static
A query optimizer based on a static analysis of the query which relies on
fast range counts for the basic graph patterns to estimate the
cardinality of the different access paths.
|
Modifier and Type | Method and Description |
---|---|
static QueryOptimizerEnum |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static QueryOptimizerEnum[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final QueryOptimizerEnum None
public static final QueryOptimizerEnum Static
public static final QueryOptimizerEnum Runtime
static
query optimizer produces a bad join ordering, the runtime query optimizer
can find join orderings which are orders of magnitude more efficient (10x
or 100x). For long running joins, this can translates into a savings of
minutes or hours.public static QueryOptimizerEnum[] values()
for (QueryOptimizerEnum c : QueryOptimizerEnum.values()) System.out.println(c);
public static QueryOptimizerEnum 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 © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.