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
The vtable_eponymous_only example is missing a start value assignment to the vtable cursor in one of the four variants of the Filter call
For calls with zero to two parameters (none, start, and start+stop), the vtable cursor value is assigned to the table start field.
The call with parameters start+stop+step is missing this assignment.
This leads to inconsistent behaviour where the returned values of select * from series($start, $stop, $step) do not start at the provided $start value, but at the default start value 0.
The
vtable_eponymous_only
example is missing a start value assignment to the vtable cursor in one of the four variants of the Filter callFor calls with zero to two parameters (none, start, and start+stop), the vtable cursor
value
is assigned to the tablestart
field.The call with parameters start+stop+step is missing this assignment.
Code excerpt of Filter:
This leads to inconsistent behaviour where the returned values of
select * from series($start, $stop, $step)
do not start at the provided$start
value, but at the default start value 0.Checked for commit 7658c06.
The text was updated successfully, but these errors were encountered: