1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +03:00

Restore the NEVER() that was taken out by [f481636f1a0333c6] because that

case is no longer reachable after the previous check-in.

FossilOrigin-Name: e3a78b2a237a2e101faf01dde913f63641da8854720a9daa4b45a9c5dfe30b1b
This commit is contained in:
drh
2021-03-19 14:51:15 +00:00
parent 93eb906488
commit 66f9655599
3 changed files with 9 additions and 9 deletions

View File

@@ -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;