diff options
author | larrybr <larrybr@noemail.net> | 2021-05-19 19:55:10 +0000 |
---|---|---|
committer | larrybr <larrybr@noemail.net> | 2021-05-19 19:55:10 +0000 |
commit | 4f878f33a981786a5bf3db3372a11cf690260de7 (patch) | |
tree | b8c05ad24cf1596c5b8db1c3b4ae28cfa40ed3d8 /ext/session/sqlite3session.h | |
parent | 3ec4861c000cc5b26520c248043c18299a749d99 (diff) | |
parent | 1f4f7c7a416801a4e195634b03650191a4a43c7a (diff) | |
download | sqlite-4f878f33a981786a5bf3db3372a11cf690260de7.tar.gz sqlite-4f878f33a981786a5bf3db3372a11cf690260de7.zip |
merge from trunk
FossilOrigin-Name: 19ffe3cfe278a4046f32df56f75080c2377e4c44ad40a02d39db8e7701526204
Diffstat (limited to 'ext/session/sqlite3session.h')
-rw-r--r-- | ext/session/sqlite3session.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/ext/session/sqlite3session.h b/ext/session/sqlite3session.h index e4aed9a25..10d013390 100644 --- a/ext/session/sqlite3session.h +++ b/ext/session/sqlite3session.h @@ -86,14 +86,11 @@ void sqlite3session_delete(sqlite3_session *pSession); ** This method is used to configure a session object after it has been ** created. At present the only valid value for the second parameter is ** [SQLITE_SESSION_OBJCONFIG_SIZE]. -*/ -int sqlite3session_object_config(sqlite3_session*, int op, void *pArg); - -/* -** CAPI3REF: Arguments for sqlite3session_object_config() +** +** Arguments for sqlite3session_object_config() ** ** The following values may passed as the the 4th parameter to -** [sqlite3session_object_config]. +** sqlite3session_object_config(). ** ** <dt>SQLITE_SESSION_OBJCONFIG_SIZE <dd> ** This option is used to set, clear or query the flag that enables @@ -109,6 +106,10 @@ int sqlite3session_object_config(sqlite3_session*, int op, void *pArg); ** It is an error (SQLITE_MISUSE) to attempt to modify this setting after ** the first table has been attached to the session object. */ +int sqlite3session_object_config(sqlite3_session*, int op, void *pArg); + +/* +*/ #define SQLITE_SESSION_OBJCONFIG_SIZE 1 /* @@ -356,11 +357,11 @@ int sqlite3session_changeset( /* ** CAPI3REF: Return An Upper-limit For The Size Of The Changeset -** METHOD: sqlite3session_changeset_size() +** METHOD: sqlite3_session ** ** By default, this function always returns 0. For it to return ** a useful result, the sqlite3_session object must have been configured -** to enable this API using [sqlite3session_object_config()] with the +** to enable this API using sqlite3session_object_config() with the ** SQLITE_SESSION_OBJCONFIG_SIZE verb. ** ** When enabled, this function returns an upper limit, in bytes, for the size |