File tree Expand file tree Collapse file tree
sql/core/src/main/scala/org/apache/spark/sql/execution/aggregate Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1717
1818package org .apache .spark .sql .execution .aggregate
1919
20- import scala .collection .mutable .
20+ import scala .collection .mutable
2121
2222import org .apache .spark .internal .Logging
2323import org .apache .spark .sql .catalyst .InternalRow
2424import org .apache .spark .sql .catalyst .expressions ._
2525import org .apache .spark .sql .catalyst .expressions .aggregate ._
26- import org .apache .spark .sql .catalyst .expressions .codegen .{ Predicate => GenPredicate }
26+ import org .apache .spark .sql .catalyst .expressions .codegen .Predicate
2727
2828/**
2929 * The base class of [[SortBasedAggregationIterator ]] and [[TungstenAggregationIterator ]].
@@ -41,7 +41,7 @@ abstract class AggregationIterator(
4141 aggregateAttributes : Seq [Attribute ],
4242 initialInputBufferOffset : Int ,
4343 resultExpressions : Seq [NamedExpression ],
44- predicates : mutable.Map [Int , GenPredicate ],
44+ predicates : mutable.Map [Int , Predicate ],
4545 newMutableProjection : (Seq [Expression ], Seq [Attribute ]) => MutableProjection )
4646 extends Iterator [UnsafeRow ] with Logging {
4747
You can’t perform that action at this time.
0 commit comments