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: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to