coderfender commented on issue #2036:
URL:
https://github.com/apache/datafusion-comet/issues/2036#issuecomment-3172821404
Thank you I tried replicating the issue but it seems like there isn't a
regression between Spark and Comet ? Below is my code (perhaps I am missing
something here? )
Test case (scala) :
```
test("check arrays_overlap_inconsistency") {
val df = spark.range(1)
.select(
array(lit("a"), lit(null).cast("string")).as("x"),
array(lit("b"), lit("c"), lit(null).cast("string")).as("y")
)
df.createOrReplaceTempView("t1")
spark.sql("SELECT x , y ,arrays_overlap(x, y) from t1").show()
checkSparkAnswerAndOperator(spark.sql("SELECT arrays_overlap(x, y) from
t1"))
}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]