somu-imply commented on PR #14962: URL: https://github.com/apache/druid/pull/14962#issuecomment-1718136608
This is expected behavior with JOIN and CROSS JOIN having more precedence over COMMA JOIN. The tests will be rewritten to use CROSS JOIN instead of COMMA for unnest ``` -- non working (expected) select * from foo t1, unnest(mv_to_array(t1.dim3)) as u1(c1) CROSS JOIN foo t2 -- working with cross join select * from foo t1 CROSS JOIN unnest(mv_to_array(t1.dim3)) as u1(c1) CROSS JOIN foo t2 -- working with () select * from (select * from foo t1, unnest(mv_to_array(dim3)) as u1(c1)) CROSS JOIN foo t2 ``` -- 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]
