From: jon Date: April 5 2006 4:48am Subject: svn commit - mysqldoc@docsrva: r1721 - trunk/refman-common List-Archive: http://lists.mysql.com/commits/4468 Message-Id: <200604050448.k354mKSb006337@docsrva.mysql.com> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Author: jstephens Date: 2006-04-05 06:48:16 +0200 (Wed, 05 Apr 2006) New Revision: 1721 Log: Cluster bugfixes: Bug #18349, Bug #18395, Bug #18472, Bug #18490, Bug #18491 Modified: trunk/refman-common/news-5.0.xml trunk/refman-common/news-5.1.xml Modified: trunk/refman-common/news-5.0.xml =================================================================== --- trunk/refman-common/news-5.0.xml 2006-04-04 16:59:19 UTC (rev 1720) +++ trunk/refman-common/news-5.0.xml 2006-04-05 04:48:16 UTC (rev 1721) @@ -211,6 +211,16 @@ + + + + NDB Cluster: When multiple node restarts + were attempted without allowing each restart to complete, the + error message returned was Array index out of + bounds rather than Too many crashed + replicas. (Bug #18349) + + Modified: trunk/refman-common/news-5.1.xml =================================================================== --- trunk/refman-common/news-5.1.xml 2006-04-04 16:59:19 UTC (rev 1720) +++ trunk/refman-common/news-5.1.xml 2006-04-05 04:48:16 UTC (rev 1721) @@ -712,10 +712,51 @@ + NDB Cluster: Attempting to restart a node + with dropped events still pending would fail. (Bug #18491) + + + + + + NDB Cluster: In asynchronous replication + scenarios, binary log events could be lost on the remote + mysqld. (Bug # 18472) + + + + + + NDB Cluster: Two mysqld + processes starting at the same time could cause a race + condition. (Bug #18472) + + + + + + NDB Cluster: Two mysqld + processes did not synchronise DROP TABLE + binary log events correctly. (Bug #18395) + + + + + + NDB Cluster: When multiple node restarts + were attempted without allowing each restart to complete, the + error message returned was Array index out of + bounds rather than Too many crashed + replicas. (Bug #18349) + + + + + A SELECT ... ORDER BY ... from a view defined using a function could crash the server. An example of - such a view might be CREATE VIEW AS SELECT SQRT(c1) - FROM t1. (Bug #18386) + such a view might be CREATE VIEW v1 AS SELECT + SQRT(c1) FROM t1. (Bug #18386)