-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Closed as not planned
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
generate_series generates a list:
> SELECT generate_series(1,5);
+------------------------------------+
| generate_series(Int64(1),Int64(5)) |
+------------------------------------+
| [1, 2, 3, 4, 5] |
+------------------------------------+
1 row(s) fetched.
Elapsed 0.003 seconds.
However PostgreSQL generates rows:
SELECT generate_series(1,5)
generate_series
-----------------
1
2
3
4
5
(5 rows)
To Reproduce
No response
Expected behavior
I expect it to be compatible with the PostgreSQL function, besides it should also be more efficient to generate columnar data than having to unnest it.
Additional context
No response
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working