diff options
author | drh <> | 2021-10-15 23:02:27 +0000 |
---|---|---|
committer | drh <> | 2021-10-15 23:02:27 +0000 |
commit | 1bbfc6744c6e8309c41aaf60bc7502323f6c4a20 (patch) | |
tree | aebeb314e3c51718405b4b2bd7514ab6a678599a /src/sqliteInt.h | |
parent | 220f0d6f8e390869ca5fc4bad7ccb3e773333bda (diff) | |
download | sqlite-1bbfc6744c6e8309c41aaf60bc7502323f6c4a20.tar.gz sqlite-1bbfc6744c6e8309c41aaf60bc7502323f6c4a20.zip |
Demostrate a prototype sqlite3_autovacuum_pages() interface.
FossilOrigin-Name: bb6f2b8b486c225043bc64e5f74ff6bbad6c5d1f337f0c81eeb6172b087bb943
Diffstat (limited to 'src/sqliteInt.h')
-rw-r--r-- | src/sqliteInt.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/sqliteInt.h b/src/sqliteInt.h index dbf994d53..b50800c66 100644 --- a/src/sqliteInt.h +++ b/src/sqliteInt.h @@ -1565,6 +1565,9 @@ struct sqlite3 { void (*xRollbackCallback)(void*); /* Invoked at every commit. */ void *pUpdateArg; void (*xUpdateCallback)(void*,int, const char*,const char*,sqlite_int64); + void *pAutovacPagesArg; /* Client argument to autovac_pages */ + void (*xAutovacDestr)(void*); /* Destructor for pAutovacPAgesArg */ + unsigned int (*xAutovacPages)(void*,const char*,u32,u32,u32); Parse *pParse; /* Current parse */ #ifdef SQLITE_ENABLE_PREUPDATE_HOOK void *pPreUpdateArg; /* First argument to xPreUpdateCallback */ |