Package org.apache.calcite.rel.core
Interface RelFactories.CorrelateFactory
- Enclosing class:
RelFactories
public static interface RelFactories.CorrelateFactory
Can create a correlate of the appropriate type for a rule's calling
convention.
The result is typically a Correlate
.
-
Method Summary
Modifier and TypeMethodDescriptioncreateCorrelate
(RelNode left, RelNode right, List<RelHint> hints, CorrelationId correlationId, ImmutableBitSet requiredColumns, JoinRelType joinType) Creates a correlate.
-
Method Details
-
createCorrelate
RelNode createCorrelate(RelNode left, RelNode right, List<RelHint> hints, CorrelationId correlationId, ImmutableBitSet requiredColumns, JoinRelType joinType) Creates a correlate.- Parameters:
left
- Left inputright
- Right inputhints
- HintscorrelationId
- Variable name for the row of left inputrequiredColumns
- Required columnsjoinType
- Join type
-