diff options
author | adam <adam> | 2013-12-06 19:26:58 +0000 |
---|---|---|
committer | adam <adam> | 2013-12-06 19:26:58 +0000 |
commit | 4f2025c840be66a77ae6003826b62ca7bd5ee9e8 (patch) | |
tree | 114845e9f8d4eca51f8adf6ce75cf61cc662065c /databases/sqlite3-docs/Makefile | |
parent | cb7e1e3e5c5b129a4443acdc1ad78274e14a1dd5 (diff) | |
download | pkgsrc-4f2025c840be66a77ae6003826b62ca7bd5ee9e8.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/sqlite3-docs/Makefile')
-rw-r--r-- | databases/sqlite3-docs/Makefile | 6 |
1 files changed, 3 insertions, 3 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/ |