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

Early detection of SQLITE_TOOBIG when processing nested queries.

FossilOrigin-Name: 5d85d80ef8b216639244c6f4e6a2c0050af3cf9c3998f372bae4a19c0430f2fd
This commit is contained in:
drh
2019-04-22 20:05:54 +00:00
parent a9a5465eb4
commit 2b13cd99d3
3 changed files with 9 additions and 9 deletions

View File

@@ -4797,7 +4797,7 @@ int sqlite3ExpandSubquery(Parse *pParse, struct SrcList_item *pFrom){
pTab->nRowLogEst = 200; assert( 200==sqlite3LogEst(1048576) );
pTab->tabFlags |= TF_Ephemeral;
return SQLITE_OK;
return pParse->rc;
}
/*