diff options
author | drh <> | 2022-04-23 14:30:22 +0000 |
---|---|---|
committer | drh <> | 2022-04-23 14:30:22 +0000 |
commit | d63c07e6c58d9c54346f1d7e0b48652991161f79 (patch) | |
tree | b4d4a8b963d44c4862db07cad9bc8f97c598a813 /src | |
parent | 0748e8bf9ad067d9c8ff1ee4c922df981b479633 (diff) | |
download | sqlite-d63c07e6c58d9c54346f1d7e0b48652991161f79.tar.gz sqlite-d63c07e6c58d9c54346f1d7e0b48652991161f79.zip |
Fix an operator typo - This indicates that the branch needs further
investigation and verification.
FossilOrigin-Name: f6ab67965b718b0c6d7faf769c7e47384cfd2ddbb03df518e0c5d367f8583387
Diffstat (limited to 'src')
-rw-r--r-- | src/select.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/select.c b/src/select.c index 1211f268a..df4ad4395 100644 --- a/src/select.c +++ b/src/select.c @@ -5898,7 +5898,7 @@ static int selectExpander(Walker *pWalker, Select *p){ pRight = sqlite3Expr(db, TK_ID, zName); if( (pTabList->nSrc>1 && ( (pFrom->fg.jointype & JT_LTORJ)==0 - || (selFlags && SF_NestedFrom)!=0 + || (selFlags & SF_NestedFrom)!=0 || !inAnyUsingClause(zName,pFrom,pTabList->nSrc-i-1) ) ) |