1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-18 10:21:03 +03:00

Formatting change on a multi-line conditional, for improved clarity.

No logic changes.

FossilOrigin-Name: 7248e3476511ecd317f54edcfe1e87443bfdcc1b10c89c7734eefcabafec6c0b
This commit is contained in:
drh
2019-10-15 19:01:55 +00:00
parent 68748ec509
commit 4ec3e820a0
3 changed files with 9 additions and 9 deletions

View File

@@ -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 */