Skip to content

Commit 37a020c

Browse files
committed
fix regressions
1 parent 2f96e97 commit 37a020c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

spark/src/main/scala/org/apache/spark/sql/comet/execution/shuffle/CometShuffleExchangeExec.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ object CometShuffleExchangeExec
266266
def supportedHashPartitioningDataType(dt: DataType): Boolean = dt match {
267267
case _: BooleanType | _: ByteType | _: ShortType | _: IntegerType | _: LongType |
268268
_: FloatType | _: DoubleType | _: StringType | _: BinaryType | _: TimestampType |
269-
_: TimestampNTZType | _: DateType =>
269+
_: TimestampNTZType | _: DecimalType | _: DateType =>
270270
true
271271
case StructType(fields) =>
272272
fields.nonEmpty && fields.forall(f => supportedHashPartitioningDataType(f.dataType))

0 commit comments

Comments
 (0)