alamb commented on issue #10069: URL: https://github.com/apache/datafusion/issues/10069#issuecomment-2427708880
BTW you can get a similar effect with `unnest`: ``` > select unnest(generate_series(1, 10)); +---------------------------------------------+ | UNNEST(generate_series(Int64(1),Int64(10))) | +---------------------------------------------+ | 1 | | 2 | | 3 | | 4 | | 5 | | 6 | | 7 | | 8 | | 9 | | 10 | +---------------------------------------------+ 10 row(s) fetched. Elapsed 0.020 seconds. ``` -- 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