aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <>2021-04-17 13:46:23 +0000
committerdrh <>2021-04-17 13:46:23 +0000
commit7b0d34fe32ef3b62b86647ff6eb7d04bd360f67d (patch)
tree559c5e1afeb4921cff792bd0eb8896d0615f6ed8 /src/sqliteInt.h
parent1929cc0d8aac2e7fa7732f3bd4eca60f7d4c16ba (diff)
downloadsqlite-7b0d34fe32ef3b62b86647ff6eb7d04bd360f67d.tar.gz
sqlite-7b0d34fe32ef3b62b86647ff6eb7d04bd360f67d.zip
Ensure that variables are not used in the WINDOW clause of a query inside
of a trigger. dbsqlfuzz d9cf66100064952b66951845dfab41de1c124611 FossilOrigin-Name: 1a341378ab24a5091e6cf03b9e957d11b2bfe5c711835e8c583785f8fa0125d3
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 f4944c2ed..69d9b4912 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -3833,6 +3833,7 @@ struct Walker {
void (*xSelectCallback2)(Walker*,Select*);/* Second callback for SELECTs */
int walkerDepth; /* Number of subqueries */
u16 eCode; /* A small processing code */
+ unsigned bWalkWinDefn : 1; /* True to walk pWinDefn */
union { /* Extra data for callback */
NameContext *pNC; /* Naming context */
int n; /* A counter */