If _drop_value_extfn function is not supplied, this moving window sum is evaluated through the following calling pattern. This case is similar to the previous moving window example, but the row being evaluated is not the last row given by next value function.
_start_extfn(cntxt) _reset_extfn(cntxt) _next_value_extfn(cntxt, args) input a=1 _next_value_extfn(cntxt, args) input a=2 _evaluate_extfn(cntxt, args) returns 3 _reset_extfn(cntxt) _next_value_extfn(cntxt, args) input a=1 _next_value_extfn(cntxt, args) input a=2 _next_value_extfn(cntxt, args) input a=3 _evaluate_extfn(cntxt, args) returns 6 _reset_extfn(cntxt) _next_value_extfn(cntxt, args) input a=2 _next_value_extfn(cntxt, args) input a=3 _evaluate_extfn(cntxt, args) returns 5 _reset_extfn(cntxt) _next_value_extfn(cntxt, args) input a=4 _next_value_extfn(cntxt, args) input a=5 _evaluate_extfn(cntxt, args) returns 9 _reset_extfn(cntxt) _next_value_extfn(cntxt, args) input a=4 _next_value_extfn(cntxt, args) input a=5 _next_value_extfn(cntxt, args) input a=6 _evaluate_extfn(cntxt, args) returns 15 _reset_extfn(cntxt) _next_value_extfn(cntxt, args) input a=5 _next_value_extfn(cntxt, args) input a=6 _evaluate_extfn(cntxt, args) returns 11 _finish_extfn(cntxt)