Add the
+ vfsstat.c
+ loadable extension - a VFS shim that measures I/O
+ together with an eponymous virtual table that provides access to the measurements.
+
Improved algorithm for running queries with both an ORDER BY and a LIMIT where
+ only the inner-most loop naturally generates rows in the correct order.
+
Fix a NULL-pointer dereference/crash that could occurs when a transitive WHERE
+ clause references a non-existent collating sequence. Ticket
+ e8d439c77685eca6.
+
Improved the cost estimation for an index scan which includes a WHERE clause
+ that can be partially or fully evaluated using columns in the index and without
+ having to do a table lookup. This fixes a performance regression that occurred
+ for some obscure queries following the ORDER BY LIMIT optimization introduced
+ in version 3.12.0.
+
+
Additional changes in version 3.14.1 (2016-08-11):
+
+
A performance enhancement to the page-cache "truncate" operation
+ reduces COMMIT time by dozens of milliseconds on systems with a
+ large page cache.
+
Additional changes in version 3.14.2 (2016-09-12):
+
+
Improved support for using the STDCALL calling convention in winsqlite3.dll.
+
Fix the sqlite3_trace_v2() interface so that it is disabled if either the
+callback or the mask arguments are zero, in accordance with the documentation.
+
Fix the ".read" command in the command-line shell so that it understands
+that its input is not interactive.
+
Correct affinity computations for a SELECT on the RHS of an IN operator.
+Fix for ticket 199df4168c.
+
The ORDER BY LIMIT optimization is not valid unless the inner-most IN operator
+loop is actually used by the query plan. Fix for
+ticket 0c4df46116e90f92.
+
Fix an internal code generator problem that was causing some DELETE operations
+to no-op. Ticket ef360601
+