aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordan <dan@noemail.net>2019-03-11 19:50:54 +0000
committerdan <dan@noemail.net>2019-03-11 19:50:54 +0000
commitcc7a850f2e89e9cf6e893a6320ac9407f630f877 (patch)
tree58553560d2c44b77e7539b06c0f09acbc82f5db7 /src/sqliteInt.h
parenta786e453a4c03c958feb30bfda4153a24bb393e6 (diff)
downloadsqlite-cc7a850f2e89e9cf6e893a6320ac9407f630f877.tar.gz
sqlite-cc7a850f2e89e9cf6e893a6320ac9407f630f877.zip
Remove "cache mode" from the window frame code generator. Handle the same cases by editing the window frame specification itself.
FossilOrigin-Name: 081263538332bb9c07e62630629007ccbba31bef5dc890f60b4ba58a355f70ac
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index 5c7cac4f2..70de5d472 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -1691,7 +1691,6 @@ struct FuncDestructor {
#define SQLITE_FUNC_AFFINITY 0x4000 /* Built-in affinity() function */
#define SQLITE_FUNC_OFFSET 0x8000 /* Built-in sqlite_offset() function */
#define SQLITE_FUNC_WINDOW 0x00010000 /* Built-in window-only function */
-#define SQLITE_FUNC_WINDOW_SIZE 0x20000 /* Requires partition size as arg. */
#define SQLITE_FUNC_INTERNAL 0x00040000 /* For use by NestedParse() only */
/*
@@ -3577,9 +3576,7 @@ 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;
- int regSize;
};
#ifndef SQLITE_OMIT_WINDOWFUNC