waynexia commented on issue #19082: URL: https://github.com/apache/datafusion/issues/19082#issuecomment-3611935497
FWIW, `= any` is currently implemented via `array_contains` udf. To implement a more general `ANY` feature (like align with PostgreSQL), treating `ANY` as a logical plan node with subquery, and converting it to `EXISTS`/`JOIN` might be more suitable https://github.com/apache/datafusion/blob/00e79523bba15b3bdc99c1948ed202277e229c23/datafusion/functions-nested/src/planner.rs#L124-L137 -- 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]
