diff options
author | adam <adam@pkgsrc.org> | 2014-02-04 13:28:07 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2014-02-04 13:28:07 +0000 |
commit | 0bd9c445c6ccf362604a66792613ec57c685d8c9 (patch) | |
tree | 4af6b905bd380ec3437cb0013d768f8509a826eb /databases/sqlite3 | |
parent | 3ec8f937a60ec22fd22f133be8ef387f2a431457 (diff) | |
download | pkgsrc-0bd9c445c6ccf362604a66792613ec57c685d8c9.tar.gz |
Changes 3.8.3:
Added support for common table expressions and the WITH clause.
Added the printf() SQL function.
Added SQLITE_DETERMINISTIC as an optional bit in the 4th argument to the sqlite3_create_function() and related interfaces, providing applications with the ability to create new functions that can be factored out of inner loops when they have constant arguments.
Add SQLITE_READONLY_DBMOVED error code, returned at the beginning of a transaction, to indicate that the underlying database file has been renamed or moved out from under SQLite.
Allow arbitrary expressions, including function calls and subqueries, in the filename argument to ATTACH.
Allow a VALUES clause to be used anywhere a SELECT statement is valid.
Reseed the PRNG used by sqlite3_randomness(N,P) when invoked with N==0. Automatically reseed after a fork() on unix.
Enhance the spellfix1 virtual table so that it can search efficiently by rowid.
Performance enhancements.
Improvements to the comments in the VDBE byte-code display when running EXPLAIN.
Add the "%token_class" directive to LEMON parser generator and use it to simplify the grammar.
Change the LEMON source code to avoid calling C-library functions that OpenBSD considers dangerous. (Ex: sprintf).
Bug fix: In the command-line shell CSV import feature, do not end a field when an escaped double-quote occurs at the end of a CRLN line.
Diffstat (limited to 'databases/sqlite3')
-rw-r--r-- | databases/sqlite3/Makefile | 10 | ||||
-rw-r--r-- | databases/sqlite3/distinfo | 8 |
2 files changed, 9 insertions, 9 deletions
diff --git a/databases/sqlite3/Makefile b/databases/sqlite3/Makefile index fcea1cfe0c1..29c7cde6ed8 100644 --- a/databases/sqlite3/Makefile +++ b/databases/sqlite3/Makefile @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.71 2013/12/06 19:26:58 adam Exp $ +# $NetBSD: Makefile,v 1.72 2014/02/04 13:28:07 adam Exp $ -DISTNAME= sqlite-autoconf-3080200 -PKGNAME= sqlite3-3.8.2 +DISTNAME= sqlite-autoconf-3080300 +PKGNAME= sqlite3-3.8.3 CATEGORIES= databases -MASTER_SITES= http://www.hwaci.com/sw/sqlite/2013/ \ - http://www.sqlite.org/2013/ +MASTER_SITES= http://www.hwaci.com/sw/sqlite/2014/ \ + http://www.sqlite.org/2014/ MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= http://www.sqlite.org/ diff --git a/databases/sqlite3/distinfo b/databases/sqlite3/distinfo index 3e3b339c56f..887bc166a60 100644 --- a/databases/sqlite3/distinfo +++ b/databases/sqlite3/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.82 2013/12/06 19:26:58 adam Exp $ +$NetBSD: distinfo,v 1.83 2014/02/04 13:28:07 adam Exp $ -SHA1 (sqlite-autoconf-3080200.tar.gz) = 6033ef603ce221d367c665477514d972ef1dc90e -RMD160 (sqlite-autoconf-3080200.tar.gz) = e3ea6439b9502a478e6678d01b7f17db1d4a1c83 -Size (sqlite-autoconf-3080200.tar.gz) = 1917056 bytes +SHA1 (sqlite-autoconf-3080300.tar.gz) = c2a21d71d0c7dc3af71cf90f04dfd22ecfb280c2 +RMD160 (sqlite-autoconf-3080300.tar.gz) = a797629a2722c6b1df4d6ee4bc97ef60258fbbb1 +Size (sqlite-autoconf-3080300.tar.gz) = 1923594 bytes |