Package org.apache.calcite.plan
Interface RelRule.OperandBuilder
- Enclosing class:
RelRule<C extends RelRule.Config>
public static interface RelRule.OperandBuilder
Callback to create an operand.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionexactly
(RelOptRuleOperand operand) Supplies an operand that has been built manually.<R extends RelNode>
RelRule.OperandDetailBuilder<R>Starts building an operand by specifying its class.
-
Method Details
-
operand
Starts building an operand by specifying its class. Call further methods on the returnedRelRule.OperandDetailBuilder
to complete the operand. -
exactly
Supplies an operand that has been built manually.
-