Adds window functions to Sqlite.swift, see https://www.sqlite.org/windowfunctions.html#built_in_window_functions. The OVER cause was problematic in the current structure of the code, so for now, only OVER (ORDER BY {expression}) is supported but that is most of the use cases. The ORDER BY used here is not the same as the func order() in QueryType and cannot used like this.
Adds window functions to Sqlite.swift, see https://www.sqlite.org/windowfunctions.html#built_in_window_functions. The
OVER
cause was problematic in the current structure of the code, so for now, onlyOVER (ORDER BY {expression})
is supported but that is most of the use cases. TheORDER BY
used here is not the same as thefunc order()
in QueryType and cannot used like this.