Class UseNonPartitionedJoinLookupSource
java.lang.Object
io.trino.sql.planner.iterative.rule.UseNonPartitionedJoinLookupSource
Rule that transforms
join
probe
build
localExchange(partitioned)
into:
join
probe
build
localExchange(gather)
for small build sides.
Avoiding partitioned exchange on the probe side improves LookupJoinOperator performance.-
Nested Class Summary
Nested classes/interfaces inherited from interface io.trino.sql.planner.iterative.Rule
Rule.Context, Rule.Result -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionapply(JoinNode node, Captures captures, Rule.Context context) Returns a pattern to which plan nodes this rule applies.boolean
-
Constructor Details
-
UseNonPartitionedJoinLookupSource
public UseNonPartitionedJoinLookupSource()
-
-
Method Details