diff options
author | adam <adam> | 2010-10-18 07:08:22 +0000 |
---|---|---|
committer | adam <adam> | 2010-10-18 07:08:22 +0000 |
commit | 3c4f3d9844ee8467414e8e1fac181bfa7de9a0a2 (patch) | |
tree | f7117e260cba6534d3204be10d3b88e922383271 /databases/sqlite3-tcl | |
parent | 2cde9c579c3acc978f969544f41f8fa0aec3208b (diff) | |
download | pkgsrc-3c4f3d9844ee8467414e8e1fac181bfa7de9a0a2.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.
Diffstat (limited to 'databases/sqlite3-tcl')
-rw-r--r-- | databases/sqlite3-tcl/Makefile | 4 | ||||
-rw-r--r-- | databases/sqlite3-tcl/distinfo | 8 |
2 files changed, 6 insertions, 6 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 |