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

Modify the documentation for sqlite3_changes() to make it more testable. Add tests and minor fixes for the same.

FossilOrigin-Name: 41cdd0c422d61533a94870cb5ad094682956d472
This commit is contained in:
dan
2014-10-28 18:24:16 +00:00
parent dd8c460081
commit c3da667b25
7 changed files with 499 additions and 51 deletions

View File

@@ -5423,6 +5423,7 @@ case OP_Program: { /* jump */
pFrame->pParent = p->pFrame;
pFrame->lastRowid = lastRowid;
pFrame->nChange = p->nChange;
pFrame->nDbChange = p->db->nChange;
p->nChange = 0;
p->pFrame = pFrame;
p->aMem = aMem = &VdbeFrameMem(pFrame)[-1];