Ted-Jiang commented on issue #9566: URL: https://github.com/apache/arrow-datafusion/issues/9566#issuecomment-1990071200
I originally think this would effect subquery pattern sql like ``` ❯ create table test as values (1),(2),(3); 0 rows in set. Query took 0.021 seconds. ❯ select * from test; +---------+ | column1 | +---------+ | 1 | | 2 | | 3 | +---------+ 3 rows in set. Query took 0.006 seconds. ❯ select sum(t) from (select column1 as t from test where column1 = 4); +--------+ | SUM(t) | +--------+ | | +--------+ 1 row in set. Query took 0.019 seconds. ❯ select column1 as t from test where column1 = 4; 0 rows in set. Query took 0.008 seconds. ``` But this works fine 🤔 -- 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]
