Skip to content

Commit 46b24bb

Browse files
author
Bhargava Vadlamani
committed
integral_types_decimal_cast_native_support
1 parent c9ff2ec commit 46b24bb

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

spark/src/test/scala/org/apache/comet/CometCastSuite.scala

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -327,7 +327,8 @@ class CometCastSuite extends CometTestBase with AdaptiveSparkPlanHelper {
327327
}
328328

329329
test("cast IntegerType to DecimalType(10,2) overflow check") {
330-
val intToDecimal10OverflowValues = Seq(Int.MinValue, -100000000, -100000001, 100000000, 100000001, Int.MaxValue).toDF("a")
330+
val intToDecimal10OverflowValues =
331+
Seq(Int.MinValue, -100000000, -100000001, 100000000, 100000001, Int.MaxValue).toDF("a")
331332
castTest(intToDecimal10OverflowValues, DataTypes.createDecimalType(10, 2))
332333
}
333334

0 commit comments

Comments
 (0)