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

[NSE-794] Fix count() with decimal value #802

Merged
merged 1 commit into from
Mar 28, 2022
Merged
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