From b392ee2885fd0ec49b91157f1853e733c32c24da Mon Sep 17 00:00:00 2001 From: adam Date: Tue, 4 Feb 2014 13:28:07 +0000 Subject: 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. --- databases/sqlite3-docs/Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'databases/sqlite3-docs/Makefile') diff --git a/databases/sqlite3-docs/Makefile b/databases/sqlite3-docs/Makefile index a5c95f244c9..48c9a9c20b0 100644 --- a/databases/sqlite3-docs/Makefile +++ b/databases/sqlite3-docs/Makefile @@ -1,10 +1,10 @@ -# $NetBSD: Makefile,v 1.24 2013/12/06 19:26:58 adam Exp $ +# $NetBSD: Makefile,v 1.25 2014/02/04 13:28:07 adam Exp $ -DISTNAME= sqlite-doc-3080200 -PKGNAME= sqlite3-docs-3.8.2 +DISTNAME= sqlite-doc-3080300 +PKGNAME= sqlite3-docs-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/ EXTRACT_SUFX= .zip MAINTAINER= pkgsrc-users@NetBSD.org -- cgit v1.2.3