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

Back out the NEVER() from check-in [40d10e7aad5b8992] because it is reachable

after all. Ticket [892575cdba4e1e36]

FossilOrigin-Name: f481636f1a0333c6e98906e5d4433bf1d046380bc29c760e8e7e2c2b3530b956
This commit is contained in:
drh
2019-12-30 23:50:19 +00:00
parent 0b973c8bff
commit 70d6b8327a
4 changed files with 17 additions and 11 deletions

View File

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