diff options
author | dan <Dan Kennedy> | 2020-12-21 19:50:10 +0000 |
---|---|---|
committer | dan <Dan Kennedy> | 2020-12-21 19:50:10 +0000 |
commit | 961a72601bfb981f347d4860e65515e7ab5b7eba (patch) | |
tree | 473c21e65734c48a623e22908c3f2527fe5dcdc0 /src/sqliteInt.h | |
parent | a3d33ebe4ab767f976ea24ef1488fe1d0be82deb (diff) | |
download | sqlite-961a72601bfb981f347d4860e65515e7ab5b7eba.tar.gz sqlite-961a72601bfb981f347d4860e65515e7ab5b7eba.zip |
Fix problems with joining UNION ALL sub-queries against other sub-queries that contain LEFT JOIN.
FossilOrigin-Name: d554f710a5abbe64022f47a14ef67227c861a8f0991d85d240434e9a709cf8b8
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 9da623188..70cc68a2f 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -2715,7 +2715,7 @@ struct Expr { ** TK_VARIABLE: variable number (always >= 1). ** TK_SELECT_COLUMN: column of the result vector */ i16 iAgg; /* Which entry in pAggInfo->aCol[] or ->aFunc[] */ - i16 iRightJoinTable; /* If EP_FromJoin, the right table of the join */ + int iRightJoinTable; /* If EP_FromJoin, the right table of the join */ AggInfo *pAggInfo; /* Used by TK_AGG_COLUMN and TK_AGG_FUNCTION */ union { Table *pTab; /* TK_COLUMN: Table containing column. Can be NULL |