You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit fixes the following edge cases in the array_slice function
so that it's semantics match DuckDB:
- When begin < 0 and -begin > length, begin is clamped to the
beginning of the list.
- When step < 0 and begin = end, then the result should be a list with
the single element found at index begin/end.
Fixes#10548
0 commit comments