aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2011-02-17 13:52:02 +0000
committerdrh <drh@noemail.net>2011-02-17 13:52:02 +0000
commit0cf0e6c912b71bf9422c0ebb4026bd1bbc6af8fb (patch)
tree4ee69ecf3cfbfb6d8b05e07261ac49b67c51ef13 /src
parent6f2e6c0026ecbb6d113168fccfa1864ddea374e7 (diff)
downloadsqlite-0cf0e6c912b71bf9422c0ebb4026bd1bbc6af8fb.tar.gz
sqlite-0cf0e6c912b71bf9422c0ebb4026bd1bbc6af8fb.zip
Remove an assert() that was made redundant by the previous checkin.
FossilOrigin-Name: 21db719156deef9fb26aff27a01e324da255c825
Diffstat (limited to 'src')
-rw-r--r--src/where.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/where.c b/src/where.c
index b17117da4..9ad2ad320 100644
--- a/src/where.c
+++ b/src/where.c
@@ -1892,7 +1892,6 @@ static void constructAutomaticIndex(
idxCols |= cMask;
pIdx->aiColumn[n] = pTerm->u.leftColumn;
pColl = sqlite3BinaryCompareCollSeq(pParse, pX->pLeft, pX->pRight);
- assert( pColl!=0 || pParse->nErr>0 );
pIdx->azColl[n] = ALWAYS(pColl) ? pColl->zName : "BINARY";
n++;
}