aboutsummaryrefslogtreecommitdiff
path: root/src/vdbeaux.c
diff options
context:
space:
mode:
authordan <Dan Kennedy>2021-04-22 17:55:42 +0000
committerdan <Dan Kennedy>2021-04-22 17:55:42 +0000
commita5b51b8715412c129eb243869063c87d95490956 (patch)
tree8d49543c3188432670c968101cfccfcdd8cdca6f /src/vdbeaux.c
parent65b930553d0993898c870a671aabb905aea6adb6 (diff)
parent6d29a4fe5be41d63d7c2ba8a82ad9777a4acc39f (diff)
downloadsqlite-a5b51b8715412c129eb243869063c87d95490956.tar.gz
sqlite-a5b51b8715412c129eb243869063c87d95490956.zip
Add the experimental sqlite3session_changeset_size() API.
FossilOrigin-Name: 3de544d495fee553d95fde3fb656745d633138115d25ed39760a1ea7c8c3fae6
Diffstat (limited to 'src/vdbeaux.c')
-rw-r--r--src/vdbeaux.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/vdbeaux.c b/src/vdbeaux.c
index 296408064..d22a6a559 100644
--- a/src/vdbeaux.c
+++ b/src/vdbeaux.c
@@ -5189,7 +5189,8 @@ void sqlite3VdbePreUpdateHook(
const char *zDb, /* Database name */
Table *pTab, /* Modified table */
i64 iKey1, /* Initial key value */
- int iReg /* Register for new.* record */
+ int iReg, /* Register for new.* record */
+ int iBlobWrite
){
sqlite3 *db = v->db;
i64 iKey2;
@@ -5225,6 +5226,7 @@ void sqlite3VdbePreUpdateHook(
preupdate.iKey1 = iKey1;
preupdate.iKey2 = iKey2;
preupdate.pTab = pTab;
+ preupdate.iBlobWrite = iBlobWrite;
db->pPreUpdate = &preupdate;
db->xPreUpdateCallback(db->pPreUpdateArg, db, op, zDb, zTbl, iKey1, iKey2);