1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Support some "ROWS BETWEEN N PRECEDING AND M FOLLOWING" window functions without caching entire partitions.

FossilOrigin-Name: e7a91f12282afb5d5d7d78397a11d18e0268ee0c931d85e21fce00d13929494e
This commit is contained in:
dan
2019-03-04 21:07:11 +00:00
parent e7c9ca41b2
commit 680f6e8e2e
9 changed files with 508 additions and 15 deletions

View File

@@ -3577,6 +3577,8 @@ struct Window {
Expr *pOwner; /* Expression object this window is attached to */
int nBufferCol; /* Number of columns in buffer table */
int iArgCol; /* Offset of first argument for this function */
int regFirst;
};
#ifndef SQLITE_OMIT_WINDOWFUNC