alamb commented on issue #7760: URL: https://github.com/apache/arrow-datafusion/issues/7760#issuecomment-1751418389
``` ❯ create table table1 (a int) as values (1); 0 rows in set. Query took 0.002 seconds. ❯ WITH table2 AS ( SELECT a, count(1) as cnt FROM table1 GROUP BY A ) SELECT * FROM table2 WHERE cnt>0 LIMIT 10; +---+-----+ | a | cnt | +---+-----+ | 1 | 1 | +---+-----+ ``` 🤔 you are right @devinjdangelo -- 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]
