We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
generate_series()
This is a follow up task for #13540 Now only 2-argument version is supported
> select * from generate_series(1,3); +-------+ | value | +-------+ | 1 | | 2 | | 3 | +-------+
It can be extended with 'no start' and 'step' support:
D select * from generate_series(3); ┌─────────────────┐ │ generate_series │ │ int64 │ ├─────────────────┤ │ 0 │ │ 1 │ │ 2 │ │ 3 │ └─────────────────┘ D select * from generate_series(3,1,-1); ┌─────────────────┐ │ generate_series │ │ int64 │ ├─────────────────┤ │ 3 │ │ 2 │ │ 1 │ └─────────────────┘
DuckDB
sqllogictest
No response
The text was updated successfully, but these errors were encountered:
MemoryExec
take
Sorry, something went wrong.
jonathanc-n
No branches or pull requests
Is your feature request related to a problem or challenge?
This is a follow up task for #13540
Now only 2-argument version is supported
It can be extended with 'no start' and 'step' support:
Describe the solution you'd like
DuckDB
https://duckdb.org/docs/sql/functions/list#generate_seriessqllogictest
sDescribe alternatives you've considered
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: