l1t1 commented on issue #462: URL: https://github.com/apache/datafusion/issues/462#issuecomment-2078597104
the speed seems not fast. I used the [binary file](https://github.com/apache/arrow-datafusion/files/14934061/datafusion-cli.zip) ``` C:\Users\LD>d:datafusion-cli DataFusion CLI v37.0.0 > with recursive t as (select 1 a union all select a+1 from t where a <10000)select count(*) from t; +----------+ | COUNT(*) | +----------+ | 10000 | +----------+ 1 row(s) fetched. Elapsed 5.281 seconds. C:\Users\LD>d:sqlite\sqlite340 SQLite version 3.40.0 2022-11-16 12:10:08 sqlite> with recursive t as (select 1 a union all select a+1 from t where a <10000000)select count(*) from t; 10000000 Run Time: real 4.903 user 4.898431 sys 0.000000 ``` -- 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...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org