aboutsummaryrefslogtreecommitdiff
path: root/src/expr.c
diff options
context:
space:
mode:
authordrh <drh@noemail.net>2009-09-23 14:45:05 +0000
committerdrh <drh@noemail.net>2009-09-23 14:45:05 +0000
commit6d4486ae9f6679e01d8648c5351dff8465879fb8 (patch)
tree78f11d428e1df79444cce311d415d0a2c97e4791 /src/expr.c
parentd981d447810bf90b03a471757d3cb480c5034593 (diff)
downloadsqlite-6d4486ae9f6679e01d8648c5351dff8465879fb8.tar.gz
sqlite-6d4486ae9f6679e01d8648c5351dff8465879fb8.zip
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
Diffstat (limited to 'src/expr.c')
-rw-r--r--src/expr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/expr.c b/src/expr.c
index 998bf41a8..06db14901 100644
--- a/src/expr.c
+++ b/src/expr.c
@@ -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;