somu-imply commented on code in PR #14510:
URL: https://github.com/apache/druid/pull/14510#discussion_r1272671370
##########
sql/src/test/java/org/apache/druid/sql/calcite/CalciteArraysQueryTest.java:
##########
@@ -3159,34 +3273,26 @@ public void testUnnestWithFiltersInsideAndOutside()
skipVectorize();
testQuery(
"SELECT d3 FROM\n"
- + " (select * from druid.numfoo where dim2='a') t,\n"
+ + " (select * from druid.numfoo where dim2='a'),\n"
+ " UNNEST(MV_TO_ARRAY(dim3)) as unnested (d3)\n"
- + "WHERE t.dim1 <> 'foo'\n"
- + "AND unnested.d3 <> 'b'",
+ + "WHERE dim1 <> 'foo'\n"
+ + "AND (unnested.d3 IN ('a', 'c') OR unnested.d3 LIKE '_')",
Review Comment:
Will add new one
--
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]