devinjdangelo commented on issue #7760: URL: https://github.com/apache/arrow-datafusion/issues/7760#issuecomment-1751419505
``` ❯ create table t(x int) as values (1), (2), (3), (2), (5), (1); 0 rows in set. Query took 0.004 seconds. ❯ with t2 as (select * from t where x > 2) select * **from t2**; Error during planning: SELECT * with no tables specified is not valid ``` I think you were just missing from t2 in your original example @alamb -- 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]
