Skip to content

Commit

Permalink
address feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed Jan 28, 2025
1 parent 1a90ba3 commit 0eef007
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1935,7 +1935,7 @@ class CometExpressionSuite extends CometTestBase with AdaptiveSparkPlanHelper {
(17, 2),
(18, 2),
(19, 2),
(DecimalType.MAX_PRECISION, DecimalType.MAX_PRECISION - 1))
(DecimalType.MAX_PRECISION, DecimalType.MAX_SCALE - 1))
for ((p, s) <- testPrecisionScales) {
withTable("t1") {
sql(s"create table t1(c1 decimal($p, $s)) using parquet")
Expand All @@ -1956,7 +1956,7 @@ class CometExpressionSuite extends CometTestBase with AdaptiveSparkPlanHelper {
(17, 2),
(18, 2),
(19, 2),
(DecimalType.MAX_PRECISION, DecimalType.MAX_PRECISION - 1))
(DecimalType.MAX_PRECISION, DecimalType.MAX_SCALE - 1))
for ((p, s) <- testPrecisionScales) {
withTable("t1") {
sql(s"create table t1(c1 decimal($p, $s)) using parquet")
Expand Down

0 comments on commit 0eef007

Please sign in to comment.