diff options
author | drh <drh@noemail.net> | 2018-12-24 14:30:11 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2018-12-24 14:30:11 +0000 |
commit | a599e150caa88cfc9a7c27cf7bd79fe93b8ea7d8 (patch) | |
tree | 04fc21a1a36841882a4e6ed497d5b89f5a213207 /src | |
parent | 5198ff5767c4367124c3aecbb483c209c2f0b17b (diff) | |
download | sqlite-a599e150caa88cfc9a7c27cf7bd79fe93b8ea7d8.tar.gz sqlite-a599e150caa88cfc9a7c27cf7bd79fe93b8ea7d8.zip |
Restore a line of code that was previously commented out for debugging.
FossilOrigin-Name: e53781f5bdf5c7b7d91ffe76565ea2fe5d1b3a9b162b3a88a7017bbe785d4c72
Diffstat (limited to 'src')
-rw-r--r-- | src/wherecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/wherecode.c b/src/wherecode.c index 946bd0eb7..d238efdc8 100644 --- a/src/wherecode.c +++ b/src/wherecode.c @@ -2197,7 +2197,7 @@ Bitmask sqlite3WhereCodeOneLoopStart( if( pAlt->wtFlags & (TERM_CODED) ) continue; if( (pAlt->eOperator & WO_IN) && (pAlt->pExpr->flags & EP_xIsSelect) -// && (pAlt->pExpr->x.pSelect->pEList->nExpr>1) + && (pAlt->pExpr->x.pSelect->pEList->nExpr>1) ){ continue; } |