diff options
author | Alex Naidis <alex.naidis@linux.com> | 2017-01-03 20:56:42 +0100 |
---|---|---|
committer | Alex Naidis <alex.naidis@linux.com> | 2017-01-03 20:56:42 +0100 |
commit | b86097c4cb51fd13c13a357e01839e65fb81296e (patch) | |
tree | 2867482dc07786f2dab38dec86c875aee9e9154f /dist/Android.patch | |
parent | bf807b731220a6e43189ede0c359b7b136d6a160 (diff) |
sqlite: upgrade to SQLite 3.16.1
Downloaded from https://www.sqlite.org/2017/sqlite-amalgamation-3160100.zip
$ sha256sum sqlite-amalgamation-3160100.zip
7c75d544d6a1627b176a17999a22ca871acab33c686ae0e3a2553bde475aa1f9 sqlite-amalgamation-3160100.zip
dist/orig contains the stock sqlite3 code, as packaged in the ZIP 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.
The Android specific patch applied cleanly and was regenerated.
This minor release contains a critical bug fix
for row values within triggers.
More details about the release is avaliable here: https://sqlite.org/releaselog/3_16_1.html
Change-Id: Id00c0f6d11b2e9fe418b71fc4b373dae12e9ef0a
Signed-off-by: Alex Naidis <alex.naidis@linux.com>
Diffstat (limited to 'dist/Android.patch')
-rw-r--r-- | dist/Android.patch | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/dist/Android.patch b/dist/Android.patch index 93c515f..c0fbe82 100644 --- a/dist/Android.patch +++ b/dist/Android.patch @@ -1,6 +1,6 @@ diff -r -u -d orig/shell.c ./shell.c ---- orig/shell.c 2017-01-02 15:41:51.291847552 +0100 -+++ ./shell.c 2017-01-02 15:42:36.150764374 +0100 +--- orig/shell.c 2017-01-04 01:37:00.000000000 +0100 ++++ ./shell.c 2017-01-03 20:54:18.535348528 +0100 @@ -52,6 +52,12 @@ #endif #include <ctype.h> @@ -38,8 +38,8 @@ diff -r -u -d orig/shell.c ./shell.c } diff -r -u -d orig/sqlite3.c ./sqlite3.c ---- orig/sqlite3.c 2017-01-02 15:41:51.308513804 +0100 -+++ ./sqlite3.c 2017-01-02 15:42:36.174097160 +0100 +--- orig/sqlite3.c 2017-01-04 01:37:00.000000000 +0100 ++++ ./sqlite3.c 2017-01-03 20:54:19.693330766 +0100 @@ -33329,7 +33329,7 @@ SimulateIOError( rc=1 ); if( rc!=0 ){ @@ -67,7 +67,7 @@ diff -r -u -d orig/sqlite3.c ./sqlite3.c goto shm_open_err; } -@@ -114815,7 +114815,7 @@ +@@ -114859,7 +114859,7 @@ } if( pDb->pSchema->file_format>SQLITE_MAX_FILE_FORMAT ){ sqlite3SetString(pzErrMsg, db, "unsupported file format"); @@ -76,7 +76,7 @@ diff -r -u -d orig/sqlite3.c ./sqlite3.c goto initone_error_out; } -@@ -148155,13 +148155,25 @@ +@@ -148199,13 +148199,25 @@ ** module with sqlite. */ if( SQLITE_OK==rc |