diff options
author | drh <drh@noemail.net> | 2019-12-30 23:50:19 +0000 |
---|---|---|
committer | drh <drh@noemail.net> | 2019-12-30 23:50:19 +0000 |
commit | 70d6b8327a70a34644a65e9c2166d35a24787b4f (patch) | |
tree | 7c4c0ea36abb406c424117498420db79ed708c6d /src/expr.c | |
parent | 0b973c8bffd6686ea9c34c016f361f95719b1190 (diff) | |
download | sqlite-70d6b8327a70a34644a65e9c2166d35a24787b4f.tar.gz sqlite-70d6b8327a70a34644a65e9c2166d35a24787b4f.zip |
Back out the NEVER() from check-in [40d10e7aad5b8992] because it is reachable
after all. Ticket [892575cdba4e1e36]
FossilOrigin-Name: f481636f1a0333c6e98906e5d4433bf1d046380bc29c760e8e7e2c2b3530b956
Diffstat (limited to 'src/expr.c')
-rw-r--r-- | src/expr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c index b7be52dc2..e0a03d956 100644 --- a/src/expr.c +++ b/src/expr.c @@ -594,7 +594,7 @@ static void codeVectorCompare( int addrDone = sqlite3VdbeMakeLabel(pParse); int isCommuted = ExprHasProperty(pExpr,EP_Commuted); - if( NEVER(pParse->nErr) ) return; + if( pParse->nErr ) return; if( nLeft!=sqlite3ExprVectorSize(pRight) ){ sqlite3ErrorMsg(pParse, "row value misused"); return; |