Interface Converter
- All Superinterfaces:
Cloneable
,RelNode
,RelOptNode
- All Known Implementing Classes:
AbstractConverter
,CassandraToEnumerableConverter
,ConverterImpl
,ElasticsearchToEnumerableConverter
,EnumerableBindable
,EnumerableInterpretable
,EnumerableToSparkConverter
,GeodeToEnumerableConverter
,InnodbToEnumerableConverter
,InterpretableConverter
,JdbcToEnumerableConverter
,JdbcToSparkConverter
,MongoToEnumerableConverter
,NoneConverter
,PigToEnumerableConverter
,SparkToEnumerableConverter
Converter
to
indicate that it converts a physical attribute, or
trait
, of a relational expression
from one value to another.
Sometimes this conversion is expensive; for example, to convert a non-distinct to a distinct object stream, we have to clone every object in the input.
A converter does not change the logical expression being evaluated; after
conversion, the number of rows and the values of those rows will still be the
same. By declaring itself to be a converter, a relational expression is
telling the planner about this equivalence, and the planner groups
expressions which are logically equivalent but have different physical traits
into groups called RelSet
s.
In principle one could devise converters which change multiple traits
simultaneously (say change the sort-order and the physical location of a
relational expression). In which case, the method getInputTraits()
would return a RelTraitSet
. But for
simplicity, this class only allows one trait to be converted at a
time; all other traits are assumed to be preserved.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.apache.calcite.rel.RelNode
RelNode.Context
-
Method Summary
Modifier and TypeMethodDescriptiongetInput()
Returns the sole input relational expression.Returns the trait of the input relational expression.@Nullable RelTraitDef
Returns the definition of trait which this converter works on.Methods inherited from interface org.apache.calcite.rel.RelNode
accept, accept, childrenAccept, collectVariablesSet, collectVariablesUsed, computeSelfCost, copy, deepEquals, deepHashCode, estimateRowCount, explain, explain, fieldIsNullable, getConvention, getCorrelVariable, getDigest, getExpectedInputRowType, getInput, getInputs, getRelDigest, getRelTypeName, getRowType, getTable, getVariablesSet, isEnforcer, isValid, metadata, onRegister, recomputeDigest, register, replaceInput, stripped
Methods inherited from interface org.apache.calcite.plan.RelOptNode
getCluster, getDescription, getId, getTraitSet
-
Method Details
-
getInputTraits
RelTraitSet getInputTraits()Returns the trait of the input relational expression.- Returns:
- input trait
-
getTraitDef
@Nullable RelTraitDef getTraitDef()Returns the definition of trait which this converter works on.The input relational expression (matched by the rule) must possess this trait and have the value given by
getInputTraits()
, and the traits of the output of this converter given byRelOptNode.getTraitSet()
will have one trait altered and the other orthogonal traits will be the same.- Returns:
- trait which this converter modifies
-
getInput
RelNode getInput()Returns the sole input relational expression.- Returns:
- child relational expression
-