l1t1 opened a new issue, #9323: URL: https://github.com/apache/arrow-datafusion/issues/9323
### Is your feature request related to a problem or challenge? as https://github.com/apache/arrow-datafusion/discussions/9315 mentioned, `generate_series` is alias of `range`, it's result does not include the upper bound. it results the problem of Portability from other DBMS. ### Describe the solution you'd like the result of `generate_series` is same as that of postgresql, the `range()` funciton keeps the current result ```sql select generate_series(1,3); generate_series ----------------- 1 2 3 select * from generate_series(1,3); generate_series ----------------- 1 2 3 ``` ### Describe alternatives you've considered _No response_ ### Additional context _No response_ -- 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]
