diff options
author | drh <drh@noemail.net> | 2020-03-21 00:05:53 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2020-03-21 00:05:53 +0000 |
commit | 2aee514b4cab86856051aafaff767eeb1131eae0 (patch) | |
tree | c39d4a70c29950e07e93021f971a281c698e6f08 /src/sqliteInt.h | |
parent | ec8e689a205c429511b58be15161bf6b250bfa55 (diff) | |
download | sqlite-2aee514b4cab86856051aafaff767eeb1131eae0.tar.gz sqlite-2aee514b4cab86856051aafaff767eeb1131eae0.zip |
Recompute the set of columns used for each table when the table is
involved in query flattening.
FossilOrigin-Name: a9bb71ba708ba72255ba8d18c9856e38ddf53eae2d61c8435149354fb2b2459e
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index 7a00b576a..0a013f332 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3695,6 +3695,7 @@ struct Walker { struct WhereConst *pConst; /* WHERE clause constants */ struct RenameCtx *pRename; /* RENAME COLUMN context */ struct Table *pTab; /* Table of generated column */ + struct SrcList_item *pSrcItem; /* A single FROM clause item */ } u; }; |