aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordan <dan@noemail.net>2018-06-18 20:34:43 +0000
committerdan <dan@noemail.net>2018-06-18 20:34:43 +0000
commitc95f38d45636435b6cdbe4eb72fc5342ee1deceb (patch)
treecaea2e6b16becb7da585b62c1149083844f37dce /src/sqliteInt.h
parentf87e10c75ebb107c98ebf441d0cc753ec2442a54 (diff)
downloadsqlite-c95f38d45636435b6cdbe4eb72fc5342ee1deceb.tar.gz
sqlite-c95f38d45636435b6cdbe4eb72fc5342ee1deceb.zip
Fix problems with using window functions in CREATE VIEW statements.
FossilOrigin-Name: 943bccd2a6bd4cf3e0534c1fa46885bfa2ba7b780ddcdff9f1ea4cbb3f04e786
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 61f4f924a..d297af700 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -3528,6 +3528,7 @@ int sqlite3WindowRewrite(Parse*, Select*);
int sqlite3ExpandSubquery(Parse*, struct SrcList_item*);
void sqlite3WindowUpdate(Parse*, Window*, Window*, FuncDef*);
Window *sqlite3WindowDup(sqlite3 *db, Expr *pOwner, Window *p);
+Window *sqlite3WindowListDup(sqlite3 *db, Window *p);
void sqlite3WindowFunctions(void);
/*