mirror of
https://github.com/sqlite/sqlite.git
synced 2025-11-15 11:41:13 +03:00
Fix issues with the previous check-in and add more VDBE branch coverage
testing macros. FossilOrigin-Name: b5f72f10f2dfdbee9fe98c63ffb933e841203790746a920b99df14ca5c14127c
This commit is contained in:
@@ -2197,8 +2197,9 @@ Bitmask sqlite3WhereCodeOneLoopStart(
|
||||
u32 x = pLevel->iLikeRepCntr;
|
||||
if( x>0 ){
|
||||
skipLikeAddr = sqlite3VdbeAddOp1(v, (x&1)?OP_IfNot:OP_If,(int)(x>>1));
|
||||
VdbeCoverageIf(v, (x&1)==1);
|
||||
VdbeCoverageIf(v, (x&1)==0);
|
||||
}
|
||||
VdbeCoverage(v);
|
||||
#endif
|
||||
}
|
||||
#ifdef WHERETRACE_ENABLED /* 0xffff */
|
||||
|
||||
Reference in New Issue
Block a user