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 A4319A64EF for ; Mon, 2 Jun 2014 07:17:36 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id E8AF414A247; Mon, 2 Jun 2014 07:17:35 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 70B3014A244 for ; Mon, 2 Jun 2014 07:17:32 +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 PAhRhcLhgfFT for ; Mon, 2 Jun 2014 07:17:31 +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 B7FE414A1F4 for ; Mon, 2 Jun 2014 07:17:31 +0000 (UTC) Received: by cvs.netbsd.org (Postfix, from userid 500) id 61F6896; Mon, 2 Jun 2014 07:17:31 +0000 (UTC) Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" MIME-Version: 1.0 Date: Mon, 2 Jun 2014 07:17:31 +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: <20140602071731.61F6896@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 Jun 2 07:17:31 UTC 2014 Modified Files: pkgsrc/databases/mysql55-client: Makefile Makefile.common distinfo pkgsrc/databases/mysql55-server: PLIST Log Message: Changes 5.5.38: Bugs Fixed InnoDB: For each insert, memset would be called three times to allocate memory for system fields. To reduce CPU usage, the three memset calls are now combined into a single call. Replication: When used on a table employing a transactional storage engine, a failed TRUNCATE TABLE was still written to the binary log and thus replayed on the slave. This could lead to inconsistency when the master retained data that was removed on the slave. Now in such cases TRUNCATE TABLE is logged only when it executes successfully. Certain INFORMATION_SCHEMA queries could cause a server exit. For indexes on prefixes or character string columns, index corruption could occur for assignment of binary data to the column due to improper character counting. Solaris-specific scripts were included in and installed by non-Solaris packages. EXPLAIN on a query with an EXISTS subquery containing a UNION could cause a server exit. Multiple executions of a prepared EXPLAIN on a UNION of subqueries could cause a server exit. Executing a correlated subquery on an ARCHIVE table which has an AUTO_INCREMENT column caused the server to hang. The client library could cause clients to exit due to incorrectly mapping the client error number to the corresponding message, if reallocation of packet buffer memory occurred. Calling mysql_get_server_version() with an invalid connection handler argument caused the client to exit. Now it returns 0 and reports a CR_COMMANDS_OUT_OF_SYNC error. On Windows, calling mysql_thread_init() call without mysql_init() caused the client to exit. windows. Now it returns a nonzero result because it is an error to call mysql_thread_init() before the client library is initialized with mysql_library_init(). CMake produced not-useful warnings about INTERFACE_LINK_LIBRARIES policy. LOAD DATA LOCAL INFILE could use all CPU if import errors occurred when there were no line delimiters. A statement of the following form broke row-based replication because it created a table having a field of data type BIGINT with a display width of 3000, which is beyond the maximum acceptable value of 255: CREATE TABLE t1 AS SELECT REPEAT('A',1000) DIV 1 AS a; To generate a diff of this commit: cvs rdiff -u -r1.17 -r1.18 pkgsrc/databases/mysql55-client/Makefile cvs rdiff -u -r1.36 -r1.37 pkgsrc/databases/mysql55-client/Makefile.common cvs rdiff -u -r1.32 -r1.33 pkgsrc/databases/mysql55-client/distinfo cvs rdiff -u -r1.28 -r1.29 pkgsrc/databases/mysql55-server/PLIST Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.