Skip to content

Commit

Permalink
[VL] Make pretty log for native fallback reason (apache#4494)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yohahaha authored Jan 25, 2024
1 parent bee73ce commit 4e33e0e
Show file tree
Hide file tree
Showing 4 changed files with 140 additions and 141 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -75,14 +75,8 @@ case class CHHashAggregateExecTransformer(

override protected def checkType(dataType: DataType): Boolean = {
dataType match {
case BooleanType | ByteType | ShortType | IntegerType | LongType | FloatType | DoubleType |
StringType | TimestampType | DateType | BinaryType =>
true
case _: StructType => true
case d: DecimalType => true
case a: ArrayType => true
case n: NullType => true
case other => false
case other => super.checkType(other)
}
}

Expand Down
Loading

0 comments on commit 4e33e0e

Please sign in to comment.