We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bd3b4c7 commit d322931Copy full SHA for d322931
1 file changed
sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/expressions/ArithmeticExpressionSuite.scala
@@ -347,7 +347,7 @@ class ArithmeticExpressionSuite extends SparkFunSuite with ExpressionEvalHelper
347
348
test("SPARK-22704: Least and greatest use less global variables") {
349
val ctx1 = new CodegenContext()
350
- print(Least(Seq(Literal(1), Literal(1))).genCode(ctx1).code)
+ Least(Seq(Literal(1), Literal(1))).genCode(ctx1)
351
assert(ctx1.mutableStates.size == 1)
352
353
val ctx2 = new CodegenContext()
0 commit comments