summaryrefslogtreecommitdiff
path: root/databases/sqlite3-docs
diff options
context:
space:
mode:
authoradam <adam@pkgsrc.org>2016-05-21 11:19:30 +0000
committeradam <adam@pkgsrc.org>2016-05-21 11:19:30 +0000
commit291d61c70bd269543e0e8dcfa9be516ca957aeae (patch)
tree81975487760d839e61e2b0bd282dad76fea6fd74 /databases/sqlite3-docs
parentbe3fca94598fc88694012d726b5e3a0bd9696816 (diff)
downloadpkgsrc-291d61c70bd269543e0e8dcfa9be516ca957aeae.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-docs')
-rw-r--r--databases/sqlite3-docs/PLIST35
-rw-r--r--databases/sqlite3-docs/distinfo10
2 files changed, 39 insertions, 6 deletions
diff --git a/databases/sqlite3-docs/PLIST b/databases/sqlite3-docs/PLIST
index 89cb1d3fe30..8f5de72d16b 100644
--- a/databases/sqlite3-docs/PLIST
+++ b/databases/sqlite3-docs/PLIST
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.55 2016/04/20 05:04:44 adam Exp $
+@comment $NetBSD: PLIST,v 1.56 2016/05/21 11:19:30 adam Exp $
share/doc/sqlite3/34to35.html
share/doc/sqlite3/35to36.html
share/doc/sqlite3/about.html
@@ -134,6 +134,7 @@ share/doc/sqlite3/c3ref/pcache.html
share/doc/sqlite3/c3ref/pcache_methods2.html
share/doc/sqlite3/c3ref/pcache_page.html
share/doc/sqlite3/c3ref/prepare.html
+share/doc/sqlite3/c3ref/preupdate_count.html
share/doc/sqlite3/c3ref/profile.html
share/doc/sqlite3/c3ref/progress_handler.html
share/doc/sqlite3/c3ref/randomness.html
@@ -145,6 +146,7 @@ share/doc/sqlite3/c3ref/result_subtype.html
share/doc/sqlite3/c3ref/set_authorizer.html
share/doc/sqlite3/c3ref/sleep.html
share/doc/sqlite3/c3ref/snapshot.html
+share/doc/sqlite3/c3ref/snapshot_cmp.html
share/doc/sqlite3/c3ref/snapshot_free.html
share/doc/sqlite3/c3ref/snapshot_get.html
share/doc/sqlite3/c3ref/snapshot_open.html
@@ -547,6 +549,7 @@ share/doc/sqlite3/releaselog/3_11_1.html
share/doc/sqlite3/releaselog/3_12_0.html
share/doc/sqlite3/releaselog/3_12_1.html
share/doc/sqlite3/releaselog/3_12_2.html
+share/doc/sqlite3/releaselog/3_13_0.html
share/doc/sqlite3/releaselog/3_1_0.html
share/doc/sqlite3/releaselog/3_1_1.html
share/doc/sqlite3/releaselog/3_1_2.html
@@ -689,14 +692,44 @@ share/doc/sqlite3/releaselog/current.html
share/doc/sqlite3/requirements.html
share/doc/sqlite3/rescode.html
share/doc/sqlite3/robots.txt
+share/doc/sqlite3/rowidtable.html
share/doc/sqlite3/rtree.html
share/doc/sqlite3/selfcontained.html
share/doc/sqlite3/serverless.html
share/doc/sqlite3/session.html
+share/doc/sqlite3/session/c_changeset_abort.html
+share/doc/sqlite3/session/c_changeset_conflict.html
+share/doc/sqlite3/session/changeset_iter.html
share/doc/sqlite3/session/constlist.html
share/doc/sqlite3/session/funclist.html
share/doc/sqlite3/session/intro.html
share/doc/sqlite3/session/objlist.html
+share/doc/sqlite3/session/session.html
+share/doc/sqlite3/session/sqlite3changegroup_add_strm.html
+share/doc/sqlite3/session/sqlite3changegroup_new.html
+share/doc/sqlite3/session/sqlite3changeset_apply.html
+share/doc/sqlite3/session/sqlite3changeset_concat.html
+share/doc/sqlite3/session/sqlite3changeset_conflict.html
+share/doc/sqlite3/session/sqlite3changeset_finalize.html
+share/doc/sqlite3/session/sqlite3changeset_fk_conflicts.html
+share/doc/sqlite3/session/sqlite3changeset_invert.html
+share/doc/sqlite3/session/sqlite3changeset_new.html
+share/doc/sqlite3/session/sqlite3changeset_next.html
+share/doc/sqlite3/session/sqlite3changeset_old.html
+share/doc/sqlite3/session/sqlite3changeset_op.html
+share/doc/sqlite3/session/sqlite3changeset_pk.html
+share/doc/sqlite3/session/sqlite3changeset_start.html
+share/doc/sqlite3/session/sqlite3session_attach.html
+share/doc/sqlite3/session/sqlite3session_changeset.html
+share/doc/sqlite3/session/sqlite3session_create.html
+share/doc/sqlite3/session/sqlite3session_delete.html
+share/doc/sqlite3/session/sqlite3session_diff.html
+share/doc/sqlite3/session/sqlite3session_enable.html
+share/doc/sqlite3/session/sqlite3session_indirect.html
+share/doc/sqlite3/session/sqlite3session_isempty.html
+share/doc/sqlite3/session/sqlite3session_patchset.html
+share/doc/sqlite3/session/sqlite3session_table_filter.html
+share/doc/sqlite3/sessionintro.html
share/doc/sqlite3/sharedcache.html
share/doc/sqlite3/shortnames.html
share/doc/sqlite3/sitemap.html
diff --git a/databases/sqlite3-docs/distinfo b/databases/sqlite3-docs/distinfo
index 4f18379f529..edd04140c7c 100644
--- a/databases/sqlite3-docs/distinfo
+++ b/databases/sqlite3-docs/distinfo
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.56 2016/04/20 05:04:44 adam Exp $
+$NetBSD: distinfo,v 1.57 2016/05/21 11:19:30 adam Exp $
-SHA1 (sqlite-doc-3120200.zip) = e49eb277915d1f886a9ee4687a23ec67dc5fe3cb
-RMD160 (sqlite-doc-3120200.zip) = c3689f9f140a8a5b28dbefdf0a385dfc1f673877
-SHA512 (sqlite-doc-3120200.zip) = 4ded937565b2d9b63ae55495d4b536bc0056e0d9aa7119ee54ddea127c42ba7de17986db7b85c172043fab1112132cbc126a102b248770fca6cde9a8fda438ae
-Size (sqlite-doc-3120200.zip) = 5416790 bytes
+SHA1 (sqlite-doc-3130000.zip) = 1f10c30709c67bdb62d0d86f2b36c0148f64ed21
+RMD160 (sqlite-doc-3130000.zip) = 812b71bc79702d983335f49a293e6b8daa68cc48
+SHA512 (sqlite-doc-3130000.zip) = 0bf4544a07bd92533bc248dc16ed43c4fcad870ab535591618d3006f38c2741a8c0ed1da082444ea1af2f57936575c678bc12b651252426b908660023b36cd39
+Size (sqlite-doc-3130000.zip) = 5550186 bytes