summaryrefslogtreecommitdiff
path: root/databases
diff options
context:
space:
mode:
authoradam <adam>2013-12-06 19:26:58 +0000
committeradam <adam>2013-12-06 19:26:58 +0000
commit26a33e38802d02a643311ee6429eab559db427d0 (patch)
tree114845e9f8d4eca51f8adf6ce75cf61cc662065c /databases
parenta6671083482fe88babff0109937ad4f8ac4b1631 (diff)
downloadpkgsrc-26a33e38802d02a643311ee6429eab559db427d0.tar.gz
Changes 3.8.2:
Changed the defined behavior for the CAST expression when floating point values greater than +9223372036854775807 are cast into into integers so that the result is the largest possible integer, +9223372036854775807, instead of the smallest possible integer, -9223372036854775808. After this change, CAST(9223372036854775809.0 as INT) yields +9223372036854775807 instead of -9223372036854775808. ← Potentially Incompatible Change! Added support for WITHOUT ROWID tables. Added the skip-scan optimization to the query planner. Extended the virtual table interface, and in particular the sqlite3_index_info object to allow a virtual table to report its estimate on the number of rows that will be returned by a query. Update the R-Tree extension to make use of the enhanced virtual table interface. Add the SQLITE_ENABLE_EXPLAIN_COMMENTS compile-time option. Enhanced the comments that are inserted into EXPLAIN output when the SQLITE_ENABLE_EXPLAIN_COMMENTS compile-time option is enabled. Performance enhancements in the VDBE, especially to the OP_Column opcode. Factor constant subexpressions in inner loops out to the initialization code in prepared statements. Enhanced the ".explain" output formatting of the command-line shell so that loops are indented to better show the structure of the program. Enhanced the ".timer" feature of the command-line shell so that it shows wall-clock time in addition to system and user times.
Diffstat (limited to 'databases')
-rw-r--r--databases/sqlite3-docs/Makefile6
-rw-r--r--databases/sqlite3-docs/PLIST4
-rw-r--r--databases/sqlite3-docs/distinfo8
-rw-r--r--databases/sqlite3-tcl/Makefile6
-rw-r--r--databases/sqlite3-tcl/distinfo8
-rw-r--r--databases/sqlite3/Makefile6
-rw-r--r--databases/sqlite3/distinfo8
7 files changed, 24 insertions, 22 deletions
diff --git a/databases/sqlite3-docs/Makefile b/databases/sqlite3-docs/Makefile
index d7a089a5495..a5c95f244c9 100644
--- a/databases/sqlite3-docs/Makefile
+++ b/databases/sqlite3-docs/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.23 2013/10/19 08:48:08 adam Exp $
+# $NetBSD: Makefile,v 1.24 2013/12/06 19:26:58 adam Exp $
-DISTNAME= sqlite-doc-3080100
-PKGNAME= sqlite3-docs-3.8.1
+DISTNAME= sqlite-doc-3080200
+PKGNAME= sqlite3-docs-3.8.2
CATEGORIES= databases
MASTER_SITES= http://www.hwaci.com/sw/sqlite/2013/ \
http://www.sqlite.org/2013/
diff --git a/databases/sqlite3-docs/PLIST b/databases/sqlite3-docs/PLIST
index 2d81ecb4743..e16e6da725c 100644
--- a/databases/sqlite3-docs/PLIST
+++ b/databases/sqlite3-docs/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.21 2013/10/19 08:48:08 adam Exp $
+@comment $NetBSD: PLIST,v 1.22 2013/12/06 19:26:58 adam Exp $
share/doc/sqlite3/34to35.html
share/doc/sqlite3/35to36.html
share/doc/sqlite3/about.html
@@ -599,6 +599,7 @@ share/doc/sqlite3/releaselog/3_8_0.html
share/doc/sqlite3/releaselog/3_8_0_1.html
share/doc/sqlite3/releaselog/3_8_0_2.html
share/doc/sqlite3/releaselog/3_8_1.html
+share/doc/sqlite3/releaselog/3_8_2.html
share/doc/sqlite3/releaselog/current.html
share/doc/sqlite3/requirements.html
share/doc/sqlite3/robots.txt
@@ -632,4 +633,5 @@ share/doc/sqlite3/vfs.html
share/doc/sqlite3/vtab.html
share/doc/sqlite3/wal.html
share/doc/sqlite3/whentouse.html
+share/doc/sqlite3/withoutrowid.html
share/doc/sqlite3/zeroconf.html
diff --git a/databases/sqlite3-docs/distinfo b/databases/sqlite3-docs/distinfo
index 780eefbbd5c..17135266221 100644
--- a/databases/sqlite3-docs/distinfo
+++ b/databases/sqlite3-docs/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.21 2013/10/19 08:48:08 adam Exp $
+$NetBSD: distinfo,v 1.22 2013/12/06 19:26:58 adam Exp $
-SHA1 (sqlite-doc-3080100.zip) = d7cb698f32318fbf5dce9f10c9cd7b84c3d70105
-RMD160 (sqlite-doc-3080100.zip) = f227b288deff36284b866540b964827c2f07e35c
-Size (sqlite-doc-3080100.zip) = 4247461 bytes
+SHA1 (sqlite-doc-3080200.zip) = b9cbd42d08b8c1ce96656a6b111e918bb515b605
+RMD160 (sqlite-doc-3080200.zip) = abafc074162b47c0615e38d03c0758a4f03d45b5
+Size (sqlite-doc-3080200.zip) = 4272848 bytes
diff --git a/databases/sqlite3-tcl/Makefile b/databases/sqlite3-tcl/Makefile
index 9b67f3af5df..43f192edddb 100644
--- a/databases/sqlite3-tcl/Makefile
+++ b/databases/sqlite3-tcl/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.51 2013/10/19 08:48:09 adam Exp $
+# $NetBSD: Makefile,v 1.52 2013/12/06 19:26:58 adam Exp $
-DISTNAME= sqlite-autoconf-3080100
-PKGNAME= sqlite3-tcl-3.8.1
+DISTNAME= sqlite-autoconf-3080200
+PKGNAME= sqlite3-tcl-3.8.2
CATEGORIES= databases
MASTER_SITES= http://www.hwaci.com/sw/sqlite/2013/ \
http://www.sqlite.org/2013/
diff --git a/databases/sqlite3-tcl/distinfo b/databases/sqlite3-tcl/distinfo
index 58024bc0670..5b7293c6a14 100644
--- a/databases/sqlite3-tcl/distinfo
+++ b/databases/sqlite3-tcl/distinfo
@@ -1,7 +1,7 @@
-$NetBSD: distinfo,v 1.34 2013/10/19 08:48:09 adam Exp $
+$NetBSD: distinfo,v 1.35 2013/12/06 19:26:58 adam Exp $
-SHA1 (sqlite-autoconf-3080100.tar.gz) = 42464b07df2d6f8aa28f73ce4cc6d48b47be810e
-RMD160 (sqlite-autoconf-3080100.tar.gz) = 3512c2ebb926f0184eb687443a75c08ec177e104
-Size (sqlite-autoconf-3080100.tar.gz) = 1896869 bytes
+SHA1 (sqlite-autoconf-3080200.tar.gz) = 6033ef603ce221d367c665477514d972ef1dc90e
+RMD160 (sqlite-autoconf-3080200.tar.gz) = e3ea6439b9502a478e6678d01b7f17db1d4a1c83
+Size (sqlite-autoconf-3080200.tar.gz) = 1917056 bytes
SHA1 (patch-aa) = d4d0424eec39ede995c2c408dcf51876072d3fea
SHA1 (patch-ab) = 64a4352b9a8ed0518784837e390541cd4e1bc9aa
diff --git a/databases/sqlite3/Makefile b/databases/sqlite3/Makefile
index defb7479d90..fcea1cfe0c1 100644
--- a/databases/sqlite3/Makefile
+++ b/databases/sqlite3/Makefile
@@ -1,7 +1,7 @@
-# $NetBSD: Makefile,v 1.70 2013/10/19 08:48:08 adam Exp $
+# $NetBSD: Makefile,v 1.71 2013/12/06 19:26:58 adam Exp $
-DISTNAME= sqlite-autoconf-3080100
-PKGNAME= sqlite3-3.8.1
+DISTNAME= sqlite-autoconf-3080200
+PKGNAME= sqlite3-3.8.2
CATEGORIES= databases
MASTER_SITES= http://www.hwaci.com/sw/sqlite/2013/ \
http://www.sqlite.org/2013/
diff --git a/databases/sqlite3/distinfo b/databases/sqlite3/distinfo
index f620f075985..3e3b339c56f 100644
--- a/databases/sqlite3/distinfo
+++ b/databases/sqlite3/distinfo
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.81 2013/10/19 08:48:08 adam Exp $
+$NetBSD: distinfo,v 1.82 2013/12/06 19:26:58 adam Exp $
-SHA1 (sqlite-autoconf-3080100.tar.gz) = 42464b07df2d6f8aa28f73ce4cc6d48b47be810e
-RMD160 (sqlite-autoconf-3080100.tar.gz) = 3512c2ebb926f0184eb687443a75c08ec177e104
-Size (sqlite-autoconf-3080100.tar.gz) = 1896869 bytes
+SHA1 (sqlite-autoconf-3080200.tar.gz) = 6033ef603ce221d367c665477514d972ef1dc90e
+RMD160 (sqlite-autoconf-3080200.tar.gz) = e3ea6439b9502a478e6678d01b7f17db1d4a1c83
+Size (sqlite-autoconf-3080200.tar.gz) = 1917056 bytes