diff options
author | Ben Avison <bavison@riscosopen.org> | 2014-08-19 13:38:55 +0100 |
---|---|---|
committer | Ben Avison <bavison@riscosopen.org> | 2014-08-19 14:47:05 +0100 |
commit | f386a58fc8fd56960b218a9caa2da8d67f7adaa3 (patch) | |
tree | e280aa43af14448a5c81f113a1a0a760862197e0 | |
parent | 879b95349a87dfd5abdf22fd866dbd7b1f9aca5b (diff) |
This new version of SQLite offers significant speed improvements in my
testing. For example, the time it takes to issue
SELECT * FROM tvshowview GROUP BY tvshowview.idShow
(the first time the TV Shows library is opened) with 344 TV shows on a
non-overclocked Raspberry Pi changed as follows. Times are in seconds:
Before After
Mean StdDev Mean StdDev Confidence Change
Time 2935.6 6.2 2774.1 38.3 100.0% +5.8%
-rw-r--r-- | tools/depends/target/sqlite3/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/depends/target/sqlite3/Makefile b/tools/depends/target/sqlite3/Makefile index 87f7eaa444..9bc17fce92 100644 --- a/tools/depends/target/sqlite3/Makefile +++ b/tools/depends/target/sqlite3/Makefile @@ -3,7 +3,7 @@ DEPS= ../../Makefile.include Makefile # lib name, version LIBNAME=sqlite -VERSION=3071000 +VERSION=3080600 SOURCE=$(LIBNAME)-autoconf-$(VERSION) ARCHIVE=$(SOURCE).tar.gz |