2012.01.12

MySQL

MySQL Community Server 5.1.61 がリリースされました

オリジナル版:http://dev.mysql.com/doc/refman/5.1/en/news-5-1-61.html

最も普及しているオープンソースデータベース管理システムの新バージョンMySQL Community Server 5.1.61がリリースされました。MySQL 5.1.61は、プロダクションシステムでの使用をお勧めします。

MySQL 5.1の新機能の概要については、以下を参照してください。

http://dev.mysql.com/doc/refman/5.1/en/mysql-nutshell.html

新たなサーバにMySQL 5.1.61をインストール、または以前のMySQLリリースからMySQL 5.1.61にアップグレードする際の情報については、以下を参照してください。

http://dev.mysql.com/doc/refman/5.1/en/installing.html

下記のダウンロードページから、MySQLサーバのソースコード及び多数のプラットフォーム用バイナリが入手可能です

http://dev.mysql.com/downloads/

現時点ですべてのミラーサイトが最新であるとは限らないことに注意してください。
あるミラーサイトで本バージョンを見つけることができない場合は、後日再確認を行うか、別のダウンロード・サイトを選択してください。

フィードバック、バグレポート、バグ修正、パッチ等の情報をお待ちしておりますので、以下のページをご利用ください。

http://forge.mysql.com/wiki/Contributing

MySQL 5.1に関するオープンな問題の情報については、以下のエラッタリストを参照してください。

http://dev.mysql.com/doc/refman/5.1/en/open-bugs.html

以下のセクションは、MySQL5.1の前リリース以降のMySQLソースコードの変更を記載しています。これはオンラインでも閲覧可能です:

http://dev.mysql.com/doc/refman/5.1/en/news-5-1-58.html

以下は、追加または変更された機能です。

D.1.1. Changes in MySQL 5.1.61 (10 January, 2012)


    Bugs Fixed

      * InnoDB Storage Engine: Issuing INSERT...ON DUPLICATE KEY
        statements for InnoDB tables from concurrent threads could
        cause a deadlock
        (http://dev.mysql.com/doc/refman/5.5/en/glossary.html#glos_dea
        dlock), particularly with the INSERT...ON DUPLICATE KEY UPDATE
        form. The fix avoids deadlocks caused by the same row being
        accessed by more than one transaction. Deadlocks could still
        occur when multiple rows are inserted and updated
        simultaneously by different transactions in inconsistent
        order; those types of deadlocks require the standard error
        handling on the application side, of re-trying the
        transaction. (Bug #11759688, Bug #52020)

      * An incorrect InnoDB assertion could cause the server to halt.
        This issue only affected debug builds. The assertion
        referenced the source file btr0pcur.ic and the variable
        cursor->pos_state. (Bug #13358468)

      * The handle_segfault() signal-handler code in mysqld could
        itself crash due to calling unsafe functions. (Bug #54082, Bug
        #11761576)

      * ARCHIVE tables with NULL columns could cause server crashes or
        become corrupt under concurrent load. (Bug #51252, Bug
        #11758979)

      * Enabling myisam_use_mmap could cause the server to crash. (Bug
        #48726, Bug #11756764)

      * Concurrent access to ARCHIVE tables could cause corruption.
        (Bug #42784, Bug #11751793)