liukun4515 opened a new issue, #3469: URL: https://github.com/apache/arrow-datafusion/issues/3469
@alamb @thinkharderdev I find a issue caused by this rewrite in my work https://github.com/apache/arrow-datafusion/pull/3396 if we have two parquet, one has c1,c2, the other has c1,c3. If the filter is c2 = 1, then it will produce a expr NULL = 1 for the parquet with c1,c3 column. After I remove the binary type coercion in the physical phase, the binary physical expr of `NULL = INT(1)` can't be created, because we don't need to support type coercion in creation physical expr. _Originally posted by @liukun4515 in https://github.com/apache/arrow-datafusion/pull/3380#discussion_r970196771_ -- 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]
