1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-11-12 13:01:09 +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

@@ -144,7 +144,8 @@ struct VdbeFrame {
int nOnceFlag; /* Number of entries in aOnceFlag */
int nChildMem; /* Number of memory cells for child frame */
int nChildCsr; /* Number of cursors for child frame */
int nChange; /* Statement changes (Vdbe.nChanges) */
int nChange; /* Statement changes (Vdbe.nChange) */
int nDbChange; /* Value of db->nChange */
};
#define VdbeFrameMem(p) ((Mem *)&((u8 *)p)[ROUND8(sizeof(VdbeFrame))])