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

Previous check-in accidentally inverted a test on an assert(). Fix that.

FossilOrigin-Name: 5ec4f806c569428851b6f0159451aa3ed66b3bc61a845fd7c543cffb694b882d
This commit is contained in:
drh
2022-04-14 14:19:23 +00:00
parent eab6c125bd
commit c504f677b6
3 changed files with 8 additions and 8 deletions

View File

@@ -6266,7 +6266,7 @@ case OP_IdxRowid: { /* out2 */
assert( pC!=0 );
assert( pC->eCurType==CURTYPE_BTREE || IsNullCursor(pC) );
assert( pC->uc.pCursor!=0 );
assert( pC->isTable!=0 || IsNullCursor(pC) );
assert( pC->isTable==0 || IsNullCursor(pC) );
assert( pC->deferredMoveto==0 );
assert( !pC->nullRow || pOp->opcode==OP_IdxRowid );