Skip to content

Commit

Permalink
Fix typo in DynamicFilterSourceOperator
Browse files Browse the repository at this point in the history
  • Loading branch information
tangjiangling authored and raunaqmorarka committed Aug 10, 2022
1 parent 92f797d commit 70b2097
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public static class DynamicFilterSourceOperatorFactory
private final PlanNodeId planNodeId;
private final DynamicFilterSourceConsumer dynamicPredicateConsumer;
private final List<Channel> channels;
private final int maxDisinctValues;
private final int maxDistinctValues;
private final DataSize maxFilterSize;
private final int minMaxCollectionLimit;
private final BlockTypeOperators blockTypeOperators;
Expand All @@ -92,7 +92,7 @@ public DynamicFilterSourceOperatorFactory(
PlanNodeId planNodeId,
DynamicFilterSourceConsumer dynamicPredicateConsumer,
List<Channel> channels,
int maxDisinctValues,
int maxDistinctValues,
DataSize maxFilterSize,
int minMaxCollectionLimit,
BlockTypeOperators blockTypeOperators)
Expand All @@ -105,7 +105,7 @@ public DynamicFilterSourceOperatorFactory(
"duplicate dynamic filters are not allowed");
verify(channels.stream().map(channel -> channel.index).collect(toSet()).size() == channels.size(),
"duplicate channel indices are not allowed");
this.maxDisinctValues = maxDisinctValues;
this.maxDistinctValues = maxDistinctValues;
this.maxFilterSize = maxFilterSize;
this.minMaxCollectionLimit = minMaxCollectionLimit;
this.blockTypeOperators = requireNonNull(blockTypeOperators, "blockTypeOperators is null");
Expand All @@ -123,7 +123,7 @@ public Operator createOperator(DriverContext driverContext)
dynamicPredicateConsumer,
channels,
planNodeId,
maxDisinctValues,
maxDistinctValues,
maxFilterSize,
minMaxCollectionLimit,
blockTypeOperators);
Expand Down

0 comments on commit 70b2097

Please sign in to comment.