1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-01 06:27:03 +03:00

Enhance the ".recover" command. Fix a problem with overflow pages in dbdata.c.

FossilOrigin-Name: f193ca587f9e4f925f4f2343b0b07053bd6f93dd87fc6f8f41cf4479e90cf562
This commit is contained in:
dan
2019-04-22 20:52:12 +00:00
parent 68cb86ef23
commit b40af49d73
5 changed files with 201 additions and 35 deletions

View File

@ -506,6 +506,7 @@ static int dbdataNext(sqlite3_vtab_cursor *pCursor){
memcpy(&pCsr->pRec[nPayload-nRem], &aOvfl[4], nCopy);
nRem -= nCopy;
pgnoOvfl = get_uint32(aOvfl);
sqlite3_free(aOvfl);
}
}