Enum EnumerableConvention
- All Implemented Interfaces:
Serializable
,Comparable<EnumerableConvention>
,Constable
,Convention
,RelTrait
Enumerable
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
Nested classes/interfaces inherited from interface org.apache.calcite.plan.Convention
Convention.Impl
-
Enum Constant Summary
-
Field Summary
Modifier and TypeFieldDescriptionstatic final double
Cost of an enumerable node versus implementing an equivalent node in a "typical" calling convention.Fields inherited from interface org.apache.calcite.plan.Convention
NONE
-
Method Summary
Modifier and TypeMethodDescriptionboolean
canConvertConvention
(Convention toConvention) Returns whether we should convert from this convention totoConvention
.enforce
(RelNode input, RelTraitSet required) Given an input and required traits, returns the corresponding enforcer rel nodes, like physical Sort, Exchange etc.getName()
Return RelFactories struct for this convention.Returns the RelTraitDef that defines this RelTrait.void
register
(RelOptPlanner planner) Registers a trait instance with the planner.boolean
Returns whether this trait satisfies a given trait.toString()
Returns a succinct name for this trait.boolean
useAbstractConvertersForConversion
(RelTraitSet fromTraits, RelTraitSet toTraits) Returns whether we should convert from this trait set to the other trait set.static EnumerableConvention
Returns the enum constant of this type with the specified name.static EnumerableConvention[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
INSTANCE
-
-
Field Details
-
COST_MULTIPLIER
public static final double COST_MULTIPLIERCost of an enumerable node versus implementing an equivalent node in a "typical" calling convention.- See Also:
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
toString
Description copied from interface:RelTrait
Returns a succinct name for this trait. The planner may use this String to describe the trait.- Specified by:
toString
in interfaceRelTrait
- Overrides:
toString
in classEnum<EnumerableConvention>
-
getInterface
- Specified by:
getInterface
in interfaceConvention
-
getName
- Specified by:
getName
in interfaceConvention
-
enforce
Description copied from interface:Convention
Given an input and required traits, returns the corresponding enforcer rel nodes, like physical Sort, Exchange etc.- Specified by:
enforce
in interfaceConvention
- Parameters:
input
- The input RelNoderequired
- The required traits- Returns:
- Physical enforcer that satisfies the required traitSet,
or
null
if trait enforcement is not allowed or the required traitSet can't be satisfied.
-
getTraitDef
Description copied from interface:RelTrait
Returns the RelTraitDef that defines this RelTrait.- Specified by:
getTraitDef
in interfaceRelTrait
- Returns:
- the RelTraitDef that defines this RelTrait
-
satisfies
Description copied from interface:RelTrait
Returns whether this trait satisfies a given trait.A trait satisfies another if it is the same or stricter. For example,
ORDER BY x, y
satisfiesORDER BY x
.A trait's
satisfies
relation must be a partial order (reflexive, anti-symmetric, transitive). Many traits cannot be "loosened"; theirsatisfies
is an equivalence relation, where only X satisfies X.If a trait has multiple values (see
RelCompositeTrait
) a collection (T0, T1, ...) satisfies T if any Ti satisfies T. -
register
Description copied from interface:RelTrait
Registers a trait instance with the planner.This is an opportunity to add rules that relate to that trait. However, typical implementations will do nothing.
-
canConvertConvention
Description copied from interface:Convention
Returns whether we should convert from this convention totoConvention
. Used byConventionTraitDef
.- Specified by:
canConvertConvention
in interfaceConvention
- Parameters:
toConvention
- Desired convention to convert to- Returns:
- Whether we should convert from this convention to toConvention
-
useAbstractConvertersForConversion
Description copied from interface:Convention
Returns whether we should convert from this trait set to the other trait set.The convention decides whether it wants to handle other trait conversions, e.g. collation, distribution, etc. For a given convention, we will only add abstract converters to handle the trait (convention, collation, distribution, etc.) conversions if this function returns true.
- Specified by:
useAbstractConvertersForConversion
in interfaceConvention
- Parameters:
fromTraits
- Traits of the RelNode that we are converting fromtoTraits
- Target traits- Returns:
- Whether we should add converters
-
getRelFactories
Description copied from interface:Convention
Return RelFactories struct for this convention. It can be used to build RelNode.- Specified by:
getRelFactories
in interfaceConvention
-