Skip to content

Commit

Permalink
Fix compilation after merge master
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi committed Sep 2, 2024
1 parent 7e465a6 commit 475e371
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import org.apache.spark.sql.catalyst.expressions.{Ascending, Attribute, Expressi
import org.apache.spark.sql.catalyst.plans.logical._
import org.apache.spark.sql.execution.QueryExecution
import org.apache.spark.sql.expressions.ReduceAggregator
import org.apache.spark.sql.internal.ExpressionColumnNode
import org.apache.spark.sql.internal.TypedAggUtils.{aggKeyColumn, withInputType}
import org.apache.spark.sql.streaming.{GroupState, GroupStateTimeout, OutputMode, StatefulProcessor, StatefulProcessorWithInitialState, TimeMode}

Expand Down Expand Up @@ -1213,7 +1214,7 @@ class KeyValueGroupedDataset[K, V] private[sql](
private def scopeTypedColumn(
scope: Seq[Attribute])(
typedCol: TypedColumn[_, _]): TypedColumn[_, _] =
new TypedColumn(ScopedExpression(typedCol.expr, scope), typedCol.encoder)
new TypedColumn(ExpressionColumnNode(ScopedExpression(typedCol.expr, scope)), typedCol.encoder)


override def toString: String = {
Expand Down

0 comments on commit 475e371

Please sign in to comment.