1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Merge the latest trunk fixes and enhancements into the bedrock branch.

FossilOrigin-Name: a6f6fbe6173de8a2c366542432c01efcf959848972e047acf856817605e6b01e
This commit is contained in:
drh
2025-06-28 14:30:07 +00:00
61 changed files with 1657 additions and 956 deletions

View File

@@ -4922,6 +4922,7 @@ int sqlite3WalUndo(
if( iMax!=iNew ) walCleanupHash(pWal);
}
SEH_EXCEPT( rc = SQLITE_IOERR_IN_PAGE; )
pWal->iReCksum = 0;
}
return rc;
}
@@ -4973,6 +4974,9 @@ int sqlite3WalSavepointUndo(Wal *pWal, u32 *aWalData){
walCleanupHash(pWal);
}
SEH_EXCEPT( rc = SQLITE_IOERR_IN_PAGE; )
if( pWal->iReCksum>pWal->hdr.mxFrame ){
pWal->iReCksum = 0;
}
}
return rc;