diff options
Diffstat (limited to 'src')
-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 fb8456b19..bd12ad9f0 100644 --- a/src/expr.c +++ b/src/expr.c @@ -615,7 +615,7 @@ static void codeVectorCompare( int isCommuted = ExprHasProperty(pExpr,EP_Commuted); assert( !ExprHasVVAProperty(pExpr,EP_Immutable) ); - if( NEVER(pParse->nErr) ) return; + if( pParse->nErr ) return; if( nLeft!=sqlite3ExprVectorSize(pRight) ){ sqlite3ErrorMsg(pParse, "row value misused"); return; |