aboutsummaryrefslogtreecommitdiff
path: root/src/sqliteInt.h
diff options
context:
space:
mode:
authordrh <>2022-05-13 16:38:40 +0000
committerdrh <>2022-05-13 16:38:40 +0000
commita6e8ee12e2bbb353ae4548e38083d1855f7b86aa (patch)
tree2deb2ba455110c582a814ae4065d3bdb17aa123b /src/sqliteInt.h
parentf8d2745f99fdde443cbc8c828c231f536c17884b (diff)
downloadsqlite-a6e8ee12e2bbb353ae4548e38083d1855f7b86aa.tar.gz
sqlite-a6e8ee12e2bbb353ae4548e38083d1855f7b86aa.zip
Redefine the acccess rules for the Expr.w union so that the Expr.w.iJoin
member is accessible on either EP_OuterON or EP_InnerON. FossilOrigin-Name: 6f741d6cfb8831a3ac966257ac4519bcc8156293447bf50323c2d9b170125974
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r--src/sqliteInt.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h
index ff11d12a2..22f38ae91 100644
--- a/src/sqliteInt.h
+++ b/src/sqliteInt.h
@@ -2847,7 +2847,7 @@ struct Expr {
** TK_SELECT_COLUMN: column of the result vector */
i16 iAgg; /* Which entry in pAggInfo->aCol[] or ->aFunc[] */
union {
- int iJoin; /* If EP_OuterON, the right table of the join */
+ int iJoin; /* If EP_OuterON or EP_InnerON, the right table */
int iOfst; /* else: start of token from start of statement */
} w;
AggInfo *pAggInfo; /* Used by TK_AGG_COLUMN and TK_AGG_FUNCTION */