Package org.apache.calcite.rel.rules
Interface ExpandDisjunctionForTableRule.Config
- All Superinterfaces:
RelRule.Config
- Enclosing class:
ExpandDisjunctionForTableRule
@Immutable(singleton=false)
public static interface ExpandDisjunctionForTableRule.Config
extends RelRule.Config
Rule configuration.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final ExpandDisjunctionForTableRule.Config
static final ExpandDisjunctionForTableRule.Config
-
Method Summary
Modifier and TypeMethodDescriptiondefault int
bloat()
Limit to the size growth of the condition allowed during expansion.Forwards a call toRelOptRule.onMatch(RelOptRuleCall)
.default ExpandDisjunctionForTableRule
toRule()
Creates a rule that uses this configuration.withMatchHandler
(RelRule.MatchHandler<ExpandDisjunctionForTableRule> matchHandler) SetsmatchHandler()
.Methods inherited from interface org.apache.calcite.plan.RelRule.Config
as, description, operandSupplier, relBuilderFactory, withDescription, withOperandSupplier, withRelBuilderFactory
-
Field Details
-
FILTER
-
JOIN
-
-
Method Details
-
toRule
Description copied from interface:RelRule.Config
Creates a rule that uses this configuration. Sub-class must override.- Specified by:
toRule
in interfaceRelRule.Config
-
bloat
default int bloat()Limit to the size growth of the condition allowed during expansion. Default isRelOptUtil.DEFAULT_BLOAT
(100). -
matchHandler
RelRule.MatchHandler<ExpandDisjunctionForTableRule> matchHandler()Forwards a call toRelOptRule.onMatch(RelOptRuleCall)
. -
withMatchHandler
ExpandDisjunctionForTableRule.Config withMatchHandler(RelRule.MatchHandler<ExpandDisjunctionForTableRule> matchHandler) SetsmatchHandler()
.
-