andygrove commented on issue #3646: URL: https://github.com/apache/arrow-datafusion/issues/3646#issuecomment-1263621169
It looks like the type coercion aspect has already been fixed in a recent commit. It now fails with a different error: ``` ❯ create external table test (a decimal(10,2), b decimal(10,2)) stored as csv location 'test.csv'; 0 rows in set. Query took 0.002 seconds. ❯ select * from test where a between (select distinct a from test) and (select distinct b from test); NotImplemented("Physical plan does not support logical expression (<subquery>)") ``` -- 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...@arrow.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org