Received: from mail.netbsd.org (mail.netbsd.org [149.20.53.66]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client CN "mail.netbsd.org", Issuer "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 784ACA5826 for ; Mon, 10 Mar 2014 17:03:34 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id D869014A2D0; Mon, 10 Mar 2014 17:03:33 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id D755D14A2C8 for ; Mon, 10 Mar 2014 17:03:30 +0000 (UTC) X-Virus-Scanned: amavisd-new at NetBSD.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.NetBSD.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id v6ygfVwAw1Yn for ; Mon, 10 Mar 2014 17:03:30 +0000 (UTC) Received: from cvs.netbsd.org (cvs.NetBSD.org [IPv6:2001:4f8:3:7:2e0:81ff:fe30:95bd]) by mail.netbsd.org (Postfix) with ESMTP id 2698D14A2C5 for ; Mon, 10 Mar 2014 17:03:30 +0000 (UTC) Received: by cvs.netbsd.org (Postfix, from userid 500) id 1B92796; Mon, 10 Mar 2014 17:03:30 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Mon, 10 Mar 2014 17:03:30 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/databases To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20140310170330.1B92796@cvs.netbsd.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk Module Name: pkgsrc Committed By: adam Date: Mon Mar 10 17:03:30 UTC 2014 Modified Files: pkgsrc/databases/sqlite3: Makefile distinfo pkgsrc/databases/sqlite3-docs: Makefile PLIST distinfo pkgsrc/databases/sqlite3-tcl: Makefile distinfo pkgsrc/databases/sqlite3-tcl/patches: patch-aa Log Message: Changes 3.8.4: Code optimization and refactoring for improved performance. Add the ".clone" and ".save" commands to the command-line shell. Update the banner on the command-line shell to alert novice users when they are using an ephemeral in-memory database. Fix editline support in the command-line shell. Add support for coverage testing of VDBE programs using the SQLITE_TESTCTRL_VDBE_COVERAGE verb of sqlite3_test_control(). Update the _FILE_OFFSET_BITS macro so that builds work again on QNX. Change the datatype of SrcList.nSrc from type u8 to type int to work around an issue in the C compiler on AIX. Get extension loading working on Cygwin. Bug fix: Fix the char() SQL function so that it returns an empty string rather than an "out of memory" error when called with zero arguments. Bug fix: DISTINCT now recognizes that a zeroblob and a blob of all 0x00 bytes are the same thing. Ticket [fccbde530a] Bug fix: Compute the correct answer for queries that contain an IS NOT NULL term in the WHERE clause and also contain an OR term in the WHERE clause and are compiled with SQLITE_ENABLE_STAT4. Ticket [4c86b126f2] Bug fix: Make sure "rowid" columns are correctly resolved in joins between normal tables and WITHOUT ROWID tables. Ticket [c34d0557f7] Bug fix: Make sure the same temporary registers are not used in concurrent co-routines used to implement compound SELECT statements containing ORDER BY clauses, as such use can lead to incorrect answers. Ticket [8c63ff0eca] Bug fix: Ensure that "ORDER BY random()" clauses do not get optimized out. Ticket [65bdeb9739] Bug fix: Repair a name-resolution error that can occur in sub-select statements contained within a TRIGGER. Ticket [4ef7e3cfca] Bug fix: Fix column default values expressions of the form "DEFAULT(-(-9223372036854775808))" so that they work correctly, initializing the column to a floating point value approximately equal to +9223372036854775808.0. To generate a diff of this commit: cvs rdiff -u -r1.73 -r1.74 pkgsrc/databases/sqlite3/Makefile cvs rdiff -u -r1.84 -r1.85 pkgsrc/databases/sqlite3/distinfo cvs rdiff -u -r1.26 -r1.27 pkgsrc/databases/sqlite3-docs/Makefile cvs rdiff -u -r1.24 -r1.25 pkgsrc/databases/sqlite3-docs/PLIST \ pkgsrc/databases/sqlite3-docs/distinfo cvs rdiff -u -r1.55 -r1.56 pkgsrc/databases/sqlite3-tcl/Makefile cvs rdiff -u -r1.37 -r1.38 pkgsrc/databases/sqlite3-tcl/distinfo cvs rdiff -u -r1.2 -r1.3 pkgsrc/databases/sqlite3-tcl/patches/patch-aa Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.