Skip to content

Commit

Permalink
added missing argument for sqlite parsing cumsum
Browse files Browse the repository at this point in the history
  • Loading branch information
drizk1 committed Mar 27, 2024
1 parent 6a9215e commit a594678
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/db_parsing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ function expr_to_sql_lite(expr, sq; from_summarize::Bool)
error("cumsum is only available through a windowed @mutate")
else
# sq.windowFrame = "ROWS UNBOUNDED PRECEDING "
window_clause = construct_window_clause(sq)
window_clause = construct_window_clause(sq, from_cumsum = true)
return "SUM($(string(a))) $(window_clause)"
end
# exc_capture_bug used above to allow proper _ function name capturing
Expand Down

0 comments on commit a594678

Please sign in to comment.