From 7d177ea495e87a96df163e30efed066167d234b4 Mon Sep 17 00:00:00 2001 From: npt-1707 Date: Tue, 10 Mar 2026 01:50:05 +0800 Subject: [PATCH] vendor/sqlite3/sqlite3.c: Early-out on the INTERSECT query processing following an error. --- vendor/sqlite3/sqlite3.c | 1 + 1 file changed, 1 insertion(+) diff --git a/vendor/sqlite3/sqlite3.c b/vendor/sqlite3/sqlite3.c index 4729f45..6406077 100644 --- a/vendor/sqlite3/sqlite3.c +++ b/vendor/sqlite3/sqlite3.c @@ -127102,6 +127102,7 @@ static int multiSelect( /* Generate code to take the intersection of the two temporary ** tables. */ + if( rc ) break; assert( p->pEList ); iBreak = sqlite3VdbeMakeLabel(pParse); iCont = sqlite3VdbeMakeLabel(pParse);