diff options
author | adam <adam@pkgsrc.org> | 2010-10-18 07:08:22 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2010-10-18 07:08:22 +0000 |
commit | ec9367e37f8f7e3e77af5711fa2677c8dc3c6af3 (patch) | |
tree | f7117e260cba6534d3204be10d3b88e922383271 | |
parent | 2f9a81adfe742c650c4a68192a4b274e06302d63 (diff) | |
download | pkgsrc-ec9367e37f8f7e3e77af5711fa2677c8dc3c6af3.tar.gz |
Changes 3.7.3:
* Added the sqlite3_create_function_v2() interface that includes a destructor
callback.
* Added support for custom r-tree queries using application-supplied callback
routines to define the boundary of the query region.
* The default page cache strives more diligently to avoid using memory beyond
what is allocated to it by SQLITE_CONFIG_PAGECACHE. Or if using page cache
is allocating from the heap, it strives to avoid going over the
sqlite3_soft_heap_limit64(), even if SQLITE_ENABLE_MEMORY_MANAGEMENT is not
set.
* Added the sqlite3_soft_heap_limit64() interface as a replacement for
sqlite3_soft_heap_limit().
* The ANALYZE command now gathers statistics on tables even if they have no
indices.
* Tweaks to the query planner to help it do a better job of finding the most
efficient query plan for each query.
* Enhanced the internal text-to-numeric conversion routines so that they work
with UTF8 or UTF16, thereby avoiding some UTF16-to-UTF8 text conversions.
* Fix a problem that was causing excess memory usage with large WAL
transactions in win32 systems.
* The interface between the VDBE and B-Tree layer is enhanced such that the
VDBE provides hints to the B-Tree layer letting the B-Tree layer know when it
is safe to use hashing instead of B-Trees for transient tables.
* Miscellaneous documentation enhancements.
-rw-r--r-- | databases/sqlite3-tcl/Makefile | 4 | ||||
-rw-r--r-- | databases/sqlite3-tcl/distinfo | 8 | ||||
-rw-r--r-- | databases/sqlite3/Makefile | 4 | ||||
-rw-r--r-- | databases/sqlite3/distinfo | 8 |
4 files changed, 12 insertions, 12 deletions
diff --git a/databases/sqlite3-tcl/Makefile b/databases/sqlite3-tcl/Makefile index 5e68b61a9e1..ea065c42b54 100644 --- a/databases/sqlite3-tcl/Makefile +++ b/databases/sqlite3-tcl/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.18 2010/08/27 09:50:21 adam Exp $ +# $NetBSD: Makefile,v 1.19 2010/10/18 07:08:23 adam Exp $ -DISTNAME= sqlite-3_7_2-tea +DISTNAME= sqlite-3_7_3 PKGNAME= ${DISTNAME:S/sqlite/sqlite3-tcl/:S/-tea//:S/_/./g} CATEGORIES= databases MASTER_SITES= http://www.hwaci.com/sw/sqlite/ \ diff --git a/databases/sqlite3-tcl/distinfo b/databases/sqlite3-tcl/distinfo index fc6ec181924..ba8623b4ccb 100644 --- a/databases/sqlite3-tcl/distinfo +++ b/databases/sqlite3-tcl/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.7 2010/08/27 09:50:21 adam Exp $ +$NetBSD: distinfo,v 1.8 2010/10/18 07:08:23 adam Exp $ -SHA1 (sqlite-3_7_2-tea.tar.gz) = 087df262843368d1fd901f9b67acb501531f143c -RMD160 (sqlite-3_7_2-tea.tar.gz) = 357cba45aaaf1e69c704200139f4aff44fe33515 -Size (sqlite-3_7_2-tea.tar.gz) = 1237323 bytes +SHA1 (sqlite-3_7_3.tar.gz) = 5c3303ad77af21d72bdf65e3179b3a135bc004a9 +RMD160 (sqlite-3_7_3.tar.gz) = 0f522cc5ec65d5128d813cb858a612de834ce1e8 +Size (sqlite-3_7_3.tar.gz) = 1250832 bytes SHA1 (patch-aa) = d4d0424eec39ede995c2c408dcf51876072d3fea diff --git a/databases/sqlite3/Makefile b/databases/sqlite3/Makefile index 80ed5b7b511..c21e5c7e4e7 100644 --- a/databases/sqlite3/Makefile +++ b/databases/sqlite3/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.32 2010/08/27 09:50:21 adam Exp $ +# $NetBSD: Makefile,v 1.33 2010/10/18 07:08:22 adam Exp $ -DISTNAME= sqlite-amalgamation-3.7.2 +DISTNAME= sqlite-amalgamation-3.7.3 PKGNAME= ${DISTNAME:S/sqlite-amalgamation/sqlite3/} CATEGORIES= databases MASTER_SITES= http://www.hwaci.com/sw/sqlite/ \ diff --git a/databases/sqlite3/distinfo b/databases/sqlite3/distinfo index 0db871a7df5..ccae6ffefdd 100644 --- a/databases/sqlite3/distinfo +++ b/databases/sqlite3/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.53 2010/08/27 09:50:21 adam Exp $ +$NetBSD: distinfo,v 1.54 2010/10/18 07:08:22 adam Exp $ -SHA1 (sqlite-amalgamation-3.7.2.tar.gz) = 12aed8fc9c729444e82a27644ceb6d6a0e695cfc -RMD160 (sqlite-amalgamation-3.7.2.tar.gz) = 9f1fd0658b0f6df2288214cd7aebef533f3a6b00 -Size (sqlite-amalgamation-3.7.2.tar.gz) = 1499007 bytes +SHA1 (sqlite-amalgamation-3.7.3.tar.gz) = af3740819547f0dba52e096045525329f645c54f +RMD160 (sqlite-amalgamation-3.7.3.tar.gz) = 9a09db08c40226a09a700cb2b6cea79d04a0bab9 +Size (sqlite-amalgamation-3.7.3.tar.gz) = 1512409 bytes SHA1 (patch-aa) = 033d23ac56e22fc3a4376ab3cedaed13e173d50f |