diff options
author | adam <adam> | 2012-06-02 22:28:00 +0000 |
---|---|---|
committer | adam <adam> | 2012-06-02 22:28:00 +0000 |
commit | 26ea1d0a7d2dcf3e439d42255d0cf73f88e2ae08 (patch) | |
tree | 8dd1b0d487d65d512d8f9e38eb364686b660c895 /databases/mysql55-client | |
parent | 3b4cfc4c2075c4b7a247a85fc9257aedb327a060 (diff) | |
download | pkgsrc-26ea1d0a7d2dcf3e439d42255d0cf73f88e2ae08.tar.gz |
Changes 5.5.25:
* The --safe-mode server option now is deprecated and will be removed in MySQL
5.6.
* Performance: InnoDB: Improved the algorithm related to adaptive flushing.
This fix increases the rate of flushing in cases where compression is used
and the data set is larger than the buffer pool, leading to eviction.
* InnoDB: In a transaction using the REPEATABLE READ isolation level, an UPDATE
or DELETE statement for an InnoDB table could sometimes overlook rows
recently committed by other transactions. As explained in Section 14.3.9.2,
“Consistent Nonlocking Reads”, DML statements within a REPEATABLE READ
transaction apply to rows committed by other transactions, even if a query
could not see those rows.
* InnoDB: The Innodb_buffer_pool_pages_flushed status variable was incorrectly
set to twice the value it should be. Its value should never exceed the value
of Innodb_pages_written.
* InnoDB: The error handling and message was improved for attempting to create
a foreign key with a column referencing itself. The message suggested
a potential problem with the data dictionary, when no such problem existed.
* InnoDB: The CHECK TABLE statement could fail for a large InnoDB table due to
a timeout value of 2 hours. For typical storage devices, the issue could
occur for tables that exceeded approximately 200 or 350 GB, depending on I/O
speed. The fix relaxes the locking performed on the table being checked,
which makes the timeout less likely. It also makes InnoDB recognize the
syntax CHECK TABLE QUICK, which avoids the possibility of the timeout
entirely.
* Replication: It was theoretically possible for concurrent execution of more
than one instance of SHOW BINLOG EVENTS to crash the MySQL Server.
* Replication: Statements using AUTO_INCREMENT, LAST_INSERT_ID(), RAND(), or
user variables could be applied in the wrong context on the slave when using
statement-based replication and replication filtering server options (see
Section 16.2.3, “How Servers Evaluate Replication Filtering Rules”).
* Replication: An INSERT into a table that has a composite primary key that
includes an AUTO_INCREMENT column that is not the first column of this
composite key is not safe for statement-based binary logging or replication.
Such statements are now marked as unsafe and fail with an error when using
the STATEMENT binary logging format. For more information, see Section
16.1.2.3, “Determination of Safe and Unsafe Statements in Binary Logging”, as
well as Section 16.4.1.1, “Replication and AUTO_INCREMENT”.
Diffstat (limited to 'databases/mysql55-client')
-rw-r--r-- | databases/mysql55-client/Makefile.common | 4 | ||||
-rw-r--r-- | databases/mysql55-client/distinfo | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/databases/mysql55-client/Makefile.common b/databases/mysql55-client/Makefile.common index 36ea63bd116..b3d2301af7b 100644 --- a/databases/mysql55-client/Makefile.common +++ b/databases/mysql55-client/Makefile.common @@ -1,9 +1,9 @@ -# $NetBSD: Makefile.common,v 1.18 2012/05/13 13:05:33 taca Exp $ +# $NetBSD: Makefile.common,v 1.19 2012/06/02 22:28:00 adam Exp $ # # used by databases/mysql55-client/Makefile # used by databases/mysql55-server/Makefile -DISTNAME= mysql-5.5.24 +DISTNAME= mysql-5.5.25 CATEGORIES= databases MASTER_SITES= ${MASTER_SITE_MYSQL:=MySQL-5.5/} diff --git a/databases/mysql55-client/distinfo b/databases/mysql55-client/distinfo index 8ee8dfad2f9..33f7ba06a2a 100644 --- a/databases/mysql55-client/distinfo +++ b/databases/mysql55-client/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.15 2012/05/13 13:05:33 taca Exp $ +$NetBSD: distinfo,v 1.16 2012/06/02 22:28:00 adam Exp $ -SHA1 (mysql-5.5.24.tar.gz) = 1ab814db770ec373a54c7c0627c694ebac611e85 -RMD160 (mysql-5.5.24.tar.gz) = 8a6cf0ff40d7b21bb9bb2fab82d0695574e6f2f9 -Size (mysql-5.5.24.tar.gz) = 24518874 bytes +SHA1 (mysql-5.5.25.tar.gz) = 55060a4377b7fa6b783c406895a2c128df65382a +RMD160 (mysql-5.5.25.tar.gz) = c1833c1126523a6f9ce2f12d5d407ec897957c64 +Size (mysql-5.5.25.tar.gz) = 24639871 bytes SHA1 (patch-BUILD_compile-pentium-gcov) = a1ac666efa953a98455a726e5db359c903d699b6 SHA1 (patch-CMakeLists.txt) = 5e990e40e1e8a5d558315a38b6596c8fa4227e7b SHA1 (patch-client_completion_hash.cc) = b86ec80beac624b2aa21c7587e351ff126400ecb |