diff options
author | drh <drh@noemail.net> | 2019-10-15 19:01:55 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2019-10-15 19:01:55 +0000 |
commit | 4ec3e820a00c5372972a0f1b143b2797b21ffb9f (patch) | |
tree | a2e508785608ed3fa3bc51c04d40bdc09f8fc479 /src/wherecode.c | |
parent | 68748ec50924a77e19498766d5243851ca836d29 (diff) | |
download | sqlite-4ec3e820a00c5372972a0f1b143b2797b21ffb9f.tar.gz sqlite-4ec3e820a00c5372972a0f1b143b2797b21ffb9f.zip |
Formatting change on a multi-line conditional, for improved clarity.
No logic changes.
FossilOrigin-Name: 7248e3476511ecd317f54edcfe1e87443bfdcc1b10c89c7734eefcabafec6c0b
Diffstat (limited to 'src/wherecode.c')
-rw-r--r-- | src/wherecode.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/wherecode.c b/src/wherecode.c index 3a8fba81b..e40e3f270 100644 --- a/src/wherecode.c +++ b/src/wherecode.c @@ -1308,8 +1308,8 @@ Bitmask sqlite3WhereCodeOneLoopStart( if( (pTerm->eOperator & WO_IN)!=0 ) iIn--; if( j<16 && (pLoop->u.vtab.omitMask>>j)&1 ){ disableTerm(pLevel, pTerm); - }else if( (pTerm->eOperator & WO_IN)!=0 && - sqlite3ExprVectorSize(pTerm->pExpr->pLeft)==1 + }else if( (pTerm->eOperator & WO_IN)!=0 + && sqlite3ExprVectorSize(pTerm->pExpr->pLeft)==1 ){ Expr *pCompare; /* The comparison operator */ Expr *pRight; /* RHS of the comparison */ |