diff options
author | drh <> | 2022-10-24 18:33:50 +0000 |
---|---|---|
committer | drh <> | 2022-10-24 18:33:50 +0000 |
commit | 99a37ca7792b817581ba8f0bc9a8a0072b3df099 (patch) | |
tree | c68a19214a09fce13099580d7c0acaadd72bd784 /src/sqliteInt.h | |
parent | 80b30f995eacfafaba95f76d25b5ae2c37f478e9 (diff) | |
download | sqlite-99a37ca7792b817581ba8f0bc9a8a0072b3df099.tar.gz sqlite-99a37ca7792b817581ba8f0bc9a8a0072b3df099.zip |
Add a comment to a previously undescribed member of the Walker union.
FossilOrigin-Name: 69d704224e9ed022fcec591beff2ffcc4daf3e7fc586debfdcf00b25c1fddd87
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 04f8204d2..0df62c7da 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -4100,7 +4100,7 @@ struct Walker { struct Table *pTab; /* Table of generated column */ struct CoveringIndexCheck *pCovIdxCk; /* Check for covering index */ SrcItem *pSrcItem; /* A single FROM clause item */ - DbFixer *pFix; + DbFixer *pFix; /* See sqlite3FixSelect() */ } u; }; |