diff options
author | dan <dan@noemail.net> | 2019-08-15 13:53:22 +0000 |
---|---|---|
committer | dan <dan@noemail.net> | 2019-08-15 13:53:22 +0000 |
commit | a3fcc000cb7bd5b12816512834e6484c68658576 (patch) | |
tree | 4120e7f003a337ceab43adeaf2800683143224af /src/sqliteInt.h | |
parent | d4da4936cdfaf5647d9daf0b861b2e63969a810d (diff) | |
download | sqlite-a3fcc000cb7bd5b12816512834e6484c68658576.tar.gz sqlite-a3fcc000cb7bd5b12816512834e6484c68658576.zip |
Ensure that SQLite does not attempt to process incompatible window functions in a single scan. Fix for [256741a1].
FossilOrigin-Name: 4f5b2d938194fab7627486e2ced633def2c90d9d3328e3700612feb9dbfa3d9a
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 1104b771f..d6746aadc 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3609,6 +3609,7 @@ void sqlite3WindowUnlinkFromSelect(Window*); void sqlite3WindowListDelete(sqlite3 *db, Window *p); Window *sqlite3WindowAlloc(Parse*, int, int, Expr*, int , Expr*, u8); void sqlite3WindowAttach(Parse*, Expr*, Window*); +void sqlite3WindowLink(Select *pSel, Window *pWin); int sqlite3WindowCompare(Parse*, Window*, Window*, int); void sqlite3WindowCodeInit(Parse*, Window*); void sqlite3WindowCodeStep(Parse*, Select*, WhereInfo*, int, int); |