diff options
author | Alex Naidis <alex.naidis@linux.com> | 2017-04-01 00:13:15 +0000 |
---|---|---|
committer | android-build-merger <android-build-merger@google.com> | 2017-04-01 00:13:15 +0000 |
commit | 6fa055b1eb15c5683af9999d24ecca510ec5f552 (patch) | |
tree | d5b7523d49c2f7cd735f9b71bc250ed6232babfd /dist/sqlite3ext.h | |
parent | 71b61e07c4cf42708d9c5034aca9091c6f7388d7 (diff) | |
parent | d729aff1c5506ecb920e8fce4c2fd3cb35789e64 (diff) |
Merge "sqlite: Upgrade to SQLite 3.18.0"
am: d729aff1c5
Change-Id: If0801012ece26d30f4a8d21300fa6ad5822636ae
Diffstat (limited to 'dist/sqlite3ext.h')
-rw-r--r-- | dist/sqlite3ext.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dist/sqlite3ext.h b/dist/sqlite3ext.h index ce87e74..f25084a 100644 --- a/dist/sqlite3ext.h +++ b/dist/sqlite3ext.h @@ -282,6 +282,8 @@ struct sqlite3_api_routines { /* Version 3.14.0 and later */ int (*trace_v2)(sqlite3*,unsigned,int(*)(unsigned,void*,void*,void*),void*); char *(*expanded_sql)(sqlite3_stmt*); + /* Version 3.18.0 and later */ + void (*set_last_insert_rowid)(sqlite3*,sqlite3_int64); }; /* @@ -540,6 +542,8 @@ typedef int (*sqlite3_loadext_entry)( /* Version 3.14.0 and later */ #define sqlite3_trace_v2 sqlite3_api->trace_v2 #define sqlite3_expanded_sql sqlite3_api->expanded_sql +/* Version 3.18.0 and later */ +#define sqlite3_set_last_insert_rowid sqlite3_api->set_last_insert_rowid #endif /* !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) */ #if !defined(SQLITE_CORE) && !defined(SQLITE_OMIT_LOAD_EXTENSION) |