summaryrefslogtreecommitdiff
path: root/databases/sqlite3
diff options
context:
space:
mode:
authoradam <adam>2016-05-21 11:19:30 +0000
committeradam <adam>2016-05-21 11:19:30 +0000
commita7f8fa283d53e68d98a5e92133e5bbaeae9ac2ef (patch)
tree81975487760d839e61e2b0bd282dad76fea6fd74 /databases/sqlite3
parent042f86c38ae7351389a20343b0fbd7e6d5f3aa25 (diff)
downloadpkgsrc-a7f8fa283d53e68d98a5e92133e5bbaeae9ac2ef.tar.gz
Release 3.13.0:
Postpone I/O associated with TEMP files for as long as possible, with the hope that the I/O can ultimately be avoided completely. Merged the session extension into trunk. Added the ".auth ON|OFF" command to the command-line shell. Added the "--indent" option to the ".schema" and ".fullschema" commands of the command-line shell, to turn on pretty-printing. Added the ".eqp full" option to the command-line shell, that does both EXPLAIN and EXPLAIN QUERY PLAN on each statement that is evaluated. Improved unicode filename handling in the command-line shell on Windows. Improved resistance against goofy query planner decisions caused by incomplete or incorrect modifications to the sqlite_stat1 table by the application. Added the sqlite3_db_config(db,SQLITE_DBCONFIG_ENABLE_LOAD_EXTENSION) interface which allows the sqlite3_load_extension() C-API to be enabled while keeping the load_extension() SQL function disabled for security. Change the temporary directory search algorithm on Unix to allow directories with write and execute permission, but without read permission, to serve as temporary directories. Apply this same standard to the "." fallback directory. Bug Fixes: ---------- Fix a problem with the multi-row one-pass DELETE optimization that was causing it to compute incorrect answers with a self-referential subquery in the WHERE clause. Fix for ticket dc6ebeda9396087 Fix a possible segfault with DELETE when table is a rowid table with an INTEGER PRIMARY KEY and the WHERE clause contains a OR and the table has one or more indexes that are able to trigger the OR optimization, but none of the indexes reference any table columns other than the INTEGER PRIMARY KEY. Ticket 16c9801ceba49. When checking for the WHERE-clause push-down optimization, verify that all terms of the compound inner SELECT are non-aggregate, not just the last term. Fix for ticket f7f8c97e97597. Fix a locking race condition in Windows that can occur when two or more processes attempt to recover the same hot journal at the same time.
Diffstat (limited to 'databases/sqlite3')
-rw-r--r--databases/sqlite3/Makefile.version6
-rw-r--r--databases/sqlite3/distinfo11
-rw-r--r--databases/sqlite3/patches/patch-configure33
3 files changed, 8 insertions, 42 deletions
diff --git a/databases/sqlite3/Makefile.version b/databases/sqlite3/Makefile.version
index c40bb8f97a5..ab3b5c60b33 100644
--- a/databases/sqlite3/Makefile.version
+++ b/databases/sqlite3/Makefile.version
@@ -1,10 +1,10 @@
-# $NetBSD: Makefile.version,v 1.17 2016/04/20 05:04:44 adam Exp $
+# $NetBSD: Makefile.version,v 1.18 2016/05/21 11:19:30 adam Exp $
# used by databases/sqlite3/Makefile
# used by databases/sqlite3-docs/Makefile
# used by databases/sqlite3-tcl/Makefile
-SQLITE3_DISTVERSION= 3120200
-SQLITE3_VERSION= 3.12.2
+SQLITE3_DISTVERSION= 3130000
+SQLITE3_VERSION= 3.13.0
MASTER_SITES= http://www.hwaci.com/sw/sqlite/2016/ \
http://www.sqlite.org/2016/
diff --git a/databases/sqlite3/distinfo b/databases/sqlite3/distinfo
index b0c8c49db72..6dc7002c4a8 100644
--- a/databases/sqlite3/distinfo
+++ b/databases/sqlite3/distinfo
@@ -1,7 +1,6 @@
-$NetBSD: distinfo,v 1.121 2016/04/20 05:04:44 adam Exp $
+$NetBSD: distinfo,v 1.122 2016/05/21 11:19:30 adam Exp $
-SHA1 (sqlite-autoconf-3120200.tar.gz) = b43c2e7238e54c50b95fbbd85c48792f4f39af8c
-RMD160 (sqlite-autoconf-3120200.tar.gz) = 95906cd70cbf190f82820dd0b5cad57caffa0f6f
-SHA512 (sqlite-autoconf-3120200.tar.gz) = e56b8d5b8fb41d27437659db669259198663c266c0b3faf44ba9b130441550fb79bd040e6488f56280b33230d9cf4e51c7906f968ffdd36206354bfabc4b6eb4
-Size (sqlite-autoconf-3120200.tar.gz) = 2374804 bytes
-SHA1 (patch-configure) = 833f6b824f03b3f12f51617fa2fc7b9d4a580b35
+SHA1 (sqlite-autoconf-3130000.tar.gz) = f6f76e310389e3f510b23826f805850449ae8653
+RMD160 (sqlite-autoconf-3130000.tar.gz) = adb779281ca29c0985aec09d8cda0bbc4bc78e43
+SHA512 (sqlite-autoconf-3130000.tar.gz) = c2547ff9a144c46829344058b4f8dcc5b8c9c823cbc667be2944dc7beecb9cc213858cc9ce302a763200278397d9a0fc6bb35c542028a124ef0980fedd574c2f
+Size (sqlite-autoconf-3130000.tar.gz) = 2459805 bytes
diff --git a/databases/sqlite3/patches/patch-configure b/databases/sqlite3/patches/patch-configure
deleted file mode 100644
index c556e6940c0..00000000000
--- a/databases/sqlite3/patches/patch-configure
+++ /dev/null
@@ -1,33 +0,0 @@
-$NetBSD: patch-configure,v 1.3 2016/04/08 07:54:27 adam Exp $
-
-Portability fixes.
-
---- configure.orig 2016-03-29 10:47:30.000000000 +0000
-+++ configure
-@@ -13385,7 +13385,7 @@ else
- enable_fts5=no
- fi
-
--if test x"$enable_fts5" == "xyes"; then
-+if test x"$enable_fts5" = "xyes"; then
- { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing log" >&5
- $as_echo_n "checking for library containing log... " >&6; }
- if ${ac_cv_search_log+:} false; then :
-@@ -13457,7 +13457,7 @@ else
- enable_json1=no
- fi
-
--if test x"$enable_json1" == "xyes"; then
-+if test x"$enable_json1" = "xyes"; then
- JSON1_FLAGS=-DSQLITE_ENABLE_JSON1
- fi
-
-@@ -13473,7 +13473,7 @@ else
- enable_static_shell=yes
- fi
-
--if test x"$enable_static_shell" == "xyes"; then
-+if test x"$enable_static_shell" = "xyes"; then
- EXTRA_SHELL_OBJ=sqlite3-sqlite3.$OBJEXT
- else
- EXTRA_SHELL_OBJ=libsqlite3.la