1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-03 16:53:36 +03:00

Merge enhancements from trunk.

FossilOrigin-Name: d1731385c077f298b0cf654d6183ed40f7e5c07e4e2ab7f69109cf951ce99d9e
This commit is contained in:
drh
2020-04-02 12:24:08 +00:00
14 changed files with 120 additions and 58 deletions

View File

@@ -2140,7 +2140,7 @@ int sqlite3VdbeList(
if( rc==SQLITE_OK ){
pOp = aOp + i;
if( db->u1.isInterrupted ){
if( AtomicLoad(&db->u1.isInterrupted) ){
p->rc = SQLITE_INTERRUPT;
rc = SQLITE_ERROR;
sqlite3VdbeError(p, sqlite3ErrStr(p->rc));