diff options
Diffstat (limited to 'ext/session/sqlite3session.h')
-rw-r--r-- | ext/session/sqlite3session.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/ext/session/sqlite3session.h b/ext/session/sqlite3session.h index 9ebf360ea..78d25ba0f 100644 --- a/ext/session/sqlite3session.h +++ b/ext/session/sqlite3session.h @@ -325,6 +325,17 @@ int sqlite3session_changeset( /* ** CAPI3REF: Load The Difference Between Tables Into A Session +** METHOD: sqlite3session_changeset_size() +** +** This function returns an upper limit, in bytes, of the size of the +** changeset that might be produced if sqlite3session_changeset() were +** called. The final changeset size might be equal to or smaller than +** the size in bytes returned by this function. +*/ +sqlite3_int64 sqlite3session_changeset_size(sqlite3_session *pSession); + +/* +** CAPI3REF: Load The Difference Between Tables Into A Session ** METHOD: sqlite3_session ** ** If it is not already attached to the session object passed as the first |