1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-07 02:42:48 +03:00

Remove an incorrect assert() from the OP_SeekScan opcode.

FossilOrigin-Name: c0400f8c0bcb85ba39004feff753eae2f8e82065539e52b5788febd7644c417b
This commit is contained in:
drh
2020-10-02 12:49:06 +00:00
parent 9bb612f2c8
commit 64208b50ce
3 changed files with 7 additions and 8 deletions

View File

@@ -4445,7 +4445,6 @@ case OP_SeekScan: {
assert( pOp[1].p1==aOp[pOp->p2-1].p1 );
assert( pOp[1].p2==aOp[pOp->p2-1].p2 );
assert( pOp[1].p3==aOp[pOp->p2-1].p3 );
assert( pOp[1].p4.i==aOp[pOp->p2-1].p4.i );
assert( pOp->p1>0 );
pC = p->apCsr[pOp[1].p1];