mirror of
https://github.com/sqlite/sqlite.git
synced 2025-08-08 14:02:16 +03:00
Record when the OP_IfNotOpen branch is and is not taken.
FossilOrigin-Name: 182a898b14d585edd5fcfdcd6584c957911f0d81773d2868f16b5762dec031ca
This commit is contained in:
@@ -4396,6 +4396,7 @@ case OP_SeekHit: {
|
||||
*/
|
||||
case OP_IfNotOpen: { /* jump */
|
||||
assert( pOp->p1>=0 && pOp->p1<p->nCursor );
|
||||
VdbeBranchTaken(p->apCsr[pOp->p1]==0, 2);
|
||||
if( !p->apCsr[pOp->p1] ){
|
||||
goto jump_to_p2_and_check_for_interrupt;
|
||||
}
|
||||
|
Reference in New Issue
Block a user