diff options
author | adam <adam> | 2009-04-10 08:44:03 +0000 |
---|---|---|
committer | adam <adam> | 2009-04-10 08:44:03 +0000 |
commit | c02ba4e048a3cda311e7ae0b86ef2ca43c035989 (patch) | |
tree | f108c08ed6335486024ba416fa06fc4605659b6c /databases | |
parent | 77666446a1f6f3ca724225be4cab98190e82b856 (diff) | |
download | pkgsrc-c02ba4e048a3cda311e7ae0b86ef2ca43c035989.tar.gz |
Changes 3.6.12:
* Fixed a bug that caused database corruption when an incremental vacuum is
rolled back in an in-memory database.
* Added the sqlite3_unlock_notify() interface.
* Added the reverse unordered selects pragma.
* The default page size on windows is automatically adjusted to match the
capabilities of the underlying filesystem.
* Add the new ".genfkey" command in the CLI for generating triggers to
implement foreign key constraints.
* Performance improvements for "count(*)" queries.
* Reduce the amount of heap memory used, especially by TRIGGERs.
Diffstat (limited to 'databases')
-rw-r--r-- | databases/sqlite3/Makefile.common | 4 | ||||
-rw-r--r-- | databases/sqlite3/distinfo | 10 | ||||
-rw-r--r-- | databases/sqlite3/patches/patch-aa | 25 |
3 files changed, 10 insertions, 29 deletions
diff --git a/databases/sqlite3/Makefile.common b/databases/sqlite3/Makefile.common index 7ac5473b5bb..f8d78f7fc9d 100644 --- a/databases/sqlite3/Makefile.common +++ b/databases/sqlite3/Makefile.common @@ -1,8 +1,8 @@ -# $NetBSD: Makefile.common,v 1.33 2009/02/18 19:13:04 adam Exp $ +# $NetBSD: Makefile.common,v 1.34 2009/04/10 08:44:03 adam Exp $ # used by databases/sqlite3-tcl/Makefile -DISTNAME= sqlite-3.6.11 +DISTNAME= sqlite-3.6.12 PKGNAME= ${DISTNAME:S/-/3-/} CATEGORIES= databases MASTER_SITES= http://www.hwaci.com/sw/sqlite/ \ diff --git a/databases/sqlite3/distinfo b/databases/sqlite3/distinfo index 9ccd4db131a..dfcd532693a 100644 --- a/databases/sqlite3/distinfo +++ b/databases/sqlite3/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.32 2009/02/27 19:39:48 drochner Exp $ +$NetBSD: distinfo,v 1.33 2009/04/10 08:44:03 adam Exp $ -SHA1 (sqlite-3.6.11.tar.gz) = bd1c371784d990f7b5e99c841e58deb87fbf4b6e -RMD160 (sqlite-3.6.11.tar.gz) = c38d82c83f5d64cfb302e3232c507bafb0b64e74 -Size (sqlite-3.6.11.tar.gz) = 2804714 bytes -SHA1 (patch-aa) = 06bac6d2780adc348e5251f326978e72da1b7748 +SHA1 (sqlite-3.6.12.tar.gz) = 05ffb484d264030de41ee4bde0915bf1900d5f32 +RMD160 (sqlite-3.6.12.tar.gz) = c455dd7f5dac3ab75b1c0e58ca9a766e7fb19378 +Size (sqlite-3.6.12.tar.gz) = 2769510 bytes +SHA1 (patch-aa) = c30bb48d156f56eb82c19ce79ccb11e71ad0b7b9 diff --git a/databases/sqlite3/patches/patch-aa b/databases/sqlite3/patches/patch-aa index 9916368621e..eb93fe8ecea 100644 --- a/databases/sqlite3/patches/patch-aa +++ b/databases/sqlite3/patches/patch-aa @@ -1,17 +1,8 @@ -$NetBSD: patch-aa,v 1.7 2009/02/27 19:39:48 drochner Exp $ +$NetBSD: patch-aa,v 1.8 2009/04/10 08:44:03 adam Exp $ ---- Makefile.in.orig 2009-02-15 14:07:08.000000000 +0100 +--- Makefile.in.orig 2009-03-30 18:37:16.000000000 +0200 +++ Makefile.in -@@ -163,7 +163,7 @@ NAWK = @AWK@ - - # Object files for the SQLite library (non-amalgamation). - # --OBJS0 = alter.lo analyze.lo attach.lo auth.lo bitvec.lo btmutex.lo \ -+OBJS0 = alter.lo analyze.lo attach.lo auth.lo backup.lo bitvec.lo btmutex.lo \ - btree.lo build.lo callback.lo complete.lo date.lo \ - delete.lo expr.lo fault.lo func.lo global.lo \ - hash.lo journal.lo insert.lo legacy.lo loadext.lo \ -@@ -466,7 +466,7 @@ libsqlite3.la: $(LIBOBJ) +@@ -467,7 +467,7 @@ libsqlite3.la: $(LIBOBJ) libtclsqlite3.la: tclsqlite.lo libsqlite3.la $(LTLINK) -o $@ tclsqlite.lo \ @@ -20,13 +11,3 @@ $NetBSD: patch-aa,v 1.7 2009/02/27 19:39:48 drochner Exp $ -rpath "$(TCLLIBDIR)" \ -version-info "8:6:8" \ -avoid-version -@@ -518,6 +518,9 @@ attach.lo: $(TOP)/src/attach.c $(HDR) - auth.lo: $(TOP)/src/auth.c $(HDR) - $(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/auth.c - -+backup.lo: $(TOP)/src/backup.c $(HDR) -+ $(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/backup.c -+ - bitvec.lo: $(TOP)/src/bitvec.c $(HDR) - $(LTCOMPILE) $(TEMP_STORE) -c $(TOP)/src/bitvec.c - |