diff options
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 7d4c3ea71..cd702cef1 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3488,7 +3488,6 @@ struct Window { Expr *pFilter; FuncDef *pFunc; - int nArg; int iEphCsr; /* Temp table used by this window */ int regAccum; @@ -3513,7 +3512,7 @@ void sqlite3WindowCodeStep(Parse*, Select*, WhereInfo*, int, int); int sqlite3WindowRewrite(Parse*, Select*); int sqlite3ExpandSubquery(Parse*, struct SrcList_item*); void sqlite3WindowUpdate(Parse*, Window*, Window*, FuncDef*); -Window *sqlite3WindowDup(sqlite3 *db, Window *p); +Window *sqlite3WindowDup(sqlite3 *db, Expr *pOwner, Window *p); /* ** Assuming zIn points to the first byte of a UTF-8 character, |