aboutsummaryrefslogtreecommitdiff
path: root/src/expr.c
diff options
context:
space:
mode:
authordrh <>2021-03-19 14:51:15 +0000
committerdrh <>2021-03-19 14:51:15 +0000
commit66f9655599f353f5e9bf5ff745d6e162095677a3 (patch)
tree65afa0b3cdc3736726433542588cf69b4b47ec1a /src/expr.c
parent93eb906488f33283686c9d1fa71481f0f9c84968 (diff)
downloadsqlite-66f9655599f353f5e9bf5ff745d6e162095677a3.tar.gz
sqlite-66f9655599f353f5e9bf5ff745d6e162095677a3.zip
Restore the NEVER() that was taken out by [f481636f1a0333c6] because that
case is no longer reachable after the previous check-in. FossilOrigin-Name: e3a78b2a237a2e101faf01dde913f63641da8854720a9daa4b45a9c5dfe30b1b
Diffstat (limited to 'src/expr.c')
-rw-r--r--src/expr.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/expr.c b/src/expr.c
index bd12ad9f0..fb8456b19 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( pParse->nErr ) return;
+ if( NEVER(pParse->nErr) ) return;
if( nLeft!=sqlite3ExprVectorSize(pRight) ){
sqlite3ErrorMsg(pParse, "row value misused");
return;