comphead opened a new issue, #1929: URL: https://github.com/apache/datafusion-comet/issues/1929
### Describe the bug After reviewing https://github.com/apache/datafusion/pull/16529 I added empty array test to Comet ``` test("array_contains") { withSQLConf(CometConf.COMET_EXPR_ALLOW_INCOMPATIBLE.key -> "true") { withTempDir { dir => val path = new Path(dir.toURI.toString, "test.parquet") makeParquetFileAllTypes(path, dictionaryEnabled = false, n = 10000) spark.read.parquet(path.toString).createOrReplaceTempView("t1"); checkSparkAnswerAndOperator( spark.sql("SELECT array_contains(array(_2, _3, _4), _2) FROM t1")) checkSparkAnswerAndOperator( spark.sql("SELECT array_contains((CASE WHEN _2 =_3 THEN array(_4) END), _4) FROM t1")); checkSparkAnswerAndOperator(spark.sql("SELECT array_contains(cast(array() as array<int>), _2) FROM t1")) } } } ``` and it fails with fallback ``` Expected only Comet native operators, but found Project. ``` ### Steps to reproduce _No response_ ### Expected behavior _No response_ ### Additional context _No response_ -- 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: github-unsubscr...@datafusion.apache.org.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org