diff options
author | Fyodor Kupolov <fkupolov@google.com> | 2017-06-19 09:59:41 -0700 |
---|---|---|
committer | JP Sugarbroad <jpsugar@google.com> | 2017-07-24 17:13:47 +0000 |
commit | 6f64ed5e805fb35c3a68a999c84a0cb65ff7a70c (patch) | |
tree | 4b81738a23888d3b316ed63888ed3c97e0505c91 /dist/sqlite3.h | |
parent | d81833ea90328c9a374f3cfebe470fa55a826f1d (diff) |
[DO NOT MERGE] sqlite: Upgrade to SQLite 3.18.2
Downloaded from https://sqlite.org/2017/sqlite-autoconf-3180200.tar.gz
$ sha256sum sqlite-autoconf-3180200.tar.gz
0d40222ea818a559590c51994ac85570eff5c5f754cbe08c2d34a3791942c1ba
sqlite-autoconf-3180200.tar.gz
dist/orig contains the stock sqlite3 code, as packaged in the
tar.gz file above.
dist contains a copy of dist/orig, but with the Android.patch
file applied.
Please see Android.patch for a list of differences between stock
and Android.
This release contains critical bug fixes for 3.18.0:
- https://sqlite.org/src/info/fda22108
- https://www.sqlite.org/src/info/61fe9745
More details about the release are available here:
https://sqlite.org/src/info/version-3.18.2
Test: code compiles and device boots with no problems.
Test: Repro steps from https://sqlite.org/src/info/fda22108
and https://www.sqlite.org/src/info/61fe9745
Bug: 62447923
Merged-In: I13cede802129bef64a183915827d422e1d609464
Change-Id: I6ae907fa6f13258d8d421037c7c94c21a2188eda
(cherry picked from commit e6695ba9e149b5d63c16d22e377e259a6df92284)
Diffstat (limited to 'dist/sqlite3.h')
-rw-r--r-- | dist/sqlite3.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/dist/sqlite3.h b/dist/sqlite3.h index 7e6afcb..f7ce22a 100644 --- a/dist/sqlite3.h +++ b/dist/sqlite3.h @@ -121,9 +121,9 @@ extern "C" { ** [sqlite3_libversion_number()], [sqlite3_sourceid()], ** [sqlite_version()] and [sqlite_source_id()]. */ -#define SQLITE_VERSION "3.18.0" -#define SQLITE_VERSION_NUMBER 3018000 -#define SQLITE_SOURCE_ID "2017-03-28 18:48:43 424a0d380332858ee55bdebc4af3789f74e70a2b3ba1cf29d84b9b4bcf3e2e37" +#define SQLITE_VERSION "3.18.2" +#define SQLITE_VERSION_NUMBER 3018002 +#define SQLITE_SOURCE_ID "2017-06-17 09:59:36 036ebf729e4b21035d7f4f8e35a6f705e6bf99887889e2dc14ebf2242e7930dd" /* ** CAPI3REF: Run-Time Library Version Numbers |