We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eca99de commit 5e142b6Copy full SHA for 5e142b6
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/analysis/AnalysisSuite.scala
@@ -173,7 +173,8 @@ class AnalysisSuite extends SparkFunSuite with BeforeAndAfter {
173
assert(pl(0).dataType == DoubleType)
174
assert(pl(1).dataType == DoubleType)
175
assert(pl(2).dataType == DoubleType)
176
- assert(pl(3).dataType == DecimalType(38, 29)) // StringType will be promoted into Decimal(38, 18)
+ // StringType will be promoted into Decimal(38, 18)
177
+ assert(pl(3).dataType == DecimalType(38, 29))
178
assert(pl(4).dataType == DoubleType)
179
}
180
0 commit comments