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 45438f6 commit 82c3f89Copy full SHA for 82c3f89
backends-velox/src/test/scala/org/apache/gluten/functions/ArithmeticAnsiValidateSuite.scala
@@ -76,8 +76,10 @@ class ArithmeticAnsiValidateSuite extends FunctionsValidateSuite {
76
runQueryAndCompare("SELECT int_field1 div 2 FROM datatab WHERE int_field1 IS NOT NULL") {
77
checkGlutenOperatorMatch[ProjectExecTransformer]
78
}
79
- intercept[SparkException] {
80
- sql("SELECT 1 div 0 ").collect()
+ if (isSparkVersionGE("3.4")) {
+ intercept[SparkException] {
81
+ sql("SELECT 1 div 0 ").collect()
82
+ }
83
84
85
0 commit comments