1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-08 03:22:21 +03:00

Change the version number to 3.6.19. Fix a couple of incorrect testcase()

macros associated with the new IS and IS NOT operators in expr.c.

FossilOrigin-Name: e3b73394bf9c0391e997079b160eace3589415ab
This commit is contained in:
drh
2009-09-23 14:45:05 +00:00
parent d981d44781
commit 6d4486ae9f
4 changed files with 22 additions and 12 deletions

View File

@@ -3195,8 +3195,8 @@ void sqlite3ExprIfFalse(Parse *pParse, Expr *pExpr, int dest, int jumpIfNull){
}
case TK_IS:
case TK_ISNOT: {
testcase( op==TK_IS );
testcase( op==TK_ISNOT );
testcase( pExpr->op==TK_IS );
testcase( pExpr->op==TK_ISNOT );
codeCompareOperands(pParse, pExpr->pLeft, &r1, &regFree1,
pExpr->pRight, &r2, &regFree2);
op = (pExpr->op==TK_IS) ? TK_NE : TK_EQ;