diff options
author | drh <> | 2024-08-20 22:05:01 +0000 |
---|---|---|
committer | drh <> | 2024-08-20 22:05:01 +0000 |
commit | bb36d55e638fb7f8ba1c1ce787b835f398fc98d3 (patch) | |
tree | 3e78f8331e9c9e37edf3c18d00368b4b85d8cac9 /src/sqliteInt.h | |
parent | 0766cbf51157671e39e9109303bf315c661616ac (diff) | |
download | sqlite-bb36d55e638fb7f8ba1c1ce787b835f398fc98d3.tar.gz sqlite-bb36d55e638fb7f8ba1c1ce787b835f398fc98d3.zip |
Fix minor comment issues.
FossilOrigin-Name: c1bbed19f4348ec31c3cb4723eaa8f1554bb58ef4de7feb3a0f39612785f13d5
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 9e0faf9cc..d1ffce6d8 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -3627,7 +3627,7 @@ struct Select { #define SF_UpdateFrom 0x10000000 /* Query originates with UPDATE FROM */ #define SF_Correlated 0x20000000 /* True if references the outer context */ -/* True if SrcList item X is a subquery that has SF_NestedFrom */ +/* True if SrcItem X is a subquery that has SF_NestedFrom */ #define IsNestedFrom(X) \ ((X)->fg.isSubquery && \ ((X)->u4.pSubq->pSelect->selFlags&SF_NestedFrom)!=0) |