We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent beb8cf6 commit 57ef659Copy full SHA for 57ef659
1 file changed
spark/src/test/scala/org/apache/comet/CometExpressionSuite.scala
@@ -2990,7 +2990,7 @@ class CometExpressionSuite extends CometTestBase with AdaptiveSparkPlanHelper {
2990
test("ANSI support for integral divide (division by zero)") {
2991
val data = Seq((Integer.MAX_VALUE, 0))
2992
Seq("true", "false").foreach { p =>
2993
- withSQLConf(SQLConf.ANSI_ENABLED.key -> "true") {
+ withSQLConf(SQLConf.ANSI_ENABLED.key -> p) {
2994
withParquetTable(data, "tbl") {
2995
val res = spark.sql("""
2996
|SELECT
0 commit comments