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 25bd183 commit 8cf6124Copy full SHA for 8cf6124
spark/src/test/scala/org/apache/comet/CometExpressionSuite.scala
@@ -398,11 +398,14 @@ class CometExpressionSuite extends CometTestBase with AdaptiveSparkPlanHelper {
398
withSQLConf(SQLConf.ANSI_ENABLED.key -> "true") {
399
val data = Seq((100, 0))
400
withParquetTable(data, "t1") {
401
- val res = spark.sql("""
402
- |SELECT coalesce(_1 , 1/0) from t1;
403
- | """.stripMargin)
+ val res = spark.sql(
+ """
+ |SELECT coalesce(_1 , 1/0) from t1;
404
+ | """.stripMargin)
405
checkSparkAnswer(res)
406
}
407
+ }
408
409
410
test("dictionary arithmetic") {
411
// TODO: test ANSI mode
0 commit comments