Skip to content
This repository has been archived by the owner on Sep 18, 2023. It is now read-only.

[NSE-782] backport master changes to 1.3.1 branch #803

Merged
merged 2 commits into from
Mar 28, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,10 @@ case class ColumnarHashAggregateExec(
case t: BooleanType =>
vectors(idx)
.put(0, res.asInstanceOf[Boolean].booleanValue())
case t: DecimalType =>
// count() does not care the real value
vectors(idx)
.put(0, res.asInstanceOf[Number].intValue())
case other =>
throw new UnsupportedOperationException(s"$other is not supported.")
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,8 @@ case class ColumnarPostOverrides() extends Rule[SparkPlan] {
s" See above override in BroadcastQueryStageExec")
val localBroadcastXchg = broadcastQueryStageExec.plan.asInstanceOf[BroadcastExchangeExec]
val dataToArrowColumnar = localBroadcastXchg.child.asInstanceOf[DataToArrowColumnarExec]
ColumnarBroadcastExchangeExec(localBroadcastXchg.mode, dataToArrowColumnar)
//ColumnarBroadcastExchangeExec(localBroadcastXchg.mode, dataToArrowColumnar)
dataToArrowColumnar.child
case plan: RowToColumnarExec =>
val child = replaceWithColumnarPlan(plan.child)
if (columnarConf.enableArrowRowToColumnar) {
Expand Down
Loading