Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Rebase & make it compile again.
  • Loading branch information
hvanhovell committed Aug 10, 2015
commit d348482679f6a7cde3c1cb5575eb0313d708dfd4
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ case class ReduceSetAlgebraic(left: Expression, right: AlgebraicAggregate)
@transient private[this] lazy val evaluate =
BindReferences.bindReference(right.evaluateExpression, right.bufferSchema.toAttributes)

@transient private[this] lazy val joinRow = new JoinedRow4
@transient private[this] lazy val joinRow = new JoinedRow

override def eval(input: InternalRow): Any = {
val result = left.eval(input).asInstanceOf[OpenHashSet[Any]]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,6 @@ abstract class AggregateWindowFunction extends AlgebraicAggregate with WindowFun
self: Product =>
override val frame = SpecifiedWindowFrame(RowFrame, UnboundedPreceding, CurrentRow)
override def dataType: DataType = IntegerType
override def foldable: Boolean = false
override def nullable: Boolean = false
override val mergeExpressions = Nil // TODO how to deal with this?
}
Expand Down