diff options
Diffstat (limited to 'src')
-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 */ |