Author: paul
Date: 2007-07-07 21:15:32 +0200 (Sat, 07 Jul 2007)
New Revision: 7039
Log:
r22467@frost: paul | 2007-07-07 14:13:33 -0500
Document bugfixes:
Bug#15787
Bug#26827
Bug#27564
Bug#28026
Bug#28971
Bug#29019
Bug#29207
Bug#29299
Bug#29543
Modified:
trunk/refman-4.1/news-4.1.xml
trunk/refman-5.0/news-5.0.xml
trunk/refman-5.0/releasenotes-es-5.0.xml
trunk/refman-5.1/news-5.1.xml
Property changes on: trunk
___________________________________________________________________
Name: svk:merge
- 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:27408
7d8d2c4e-af1d-0410-ab9f-b038ce55645b:/mysqldoc-local/mysqldoc:22451
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:14218
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:18820
+ 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:27408
7d8d2c4e-af1d-0410-ab9f-b038ce55645b:/mysqldoc-local/mysqldoc:22467
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:14218
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:18820
Modified: trunk/refman-4.1/news-4.1.xml
===================================================================
--- trunk/refman-4.1/news-4.1.xml 2007-07-07 16:32:24 UTC (rev 7038)
+++ trunk/refman-4.1/news-4.1.xml 2007-07-07 19:15:32 UTC (rev 7039)
Changed blocks: 1, Lines Added: 7, Lines Deleted: 0; 681 bytes
@@ -190,6 +190,13 @@
<listitem>
<para>
+ Dropping a user-defined function could cause a server crash if
+ the function was still in use by another thread. (Bug #27564)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
On 64-bit Windows systems, the Config Wizard failed to
complete the setup because 64-bit Windows does not resolve
dynamic linking of the 64-bit
Modified: trunk/refman-5.0/news-5.0.xml
===================================================================
--- trunk/refman-5.0/news-5.0.xml 2007-07-07 16:32:24 UTC (rev 7038)
+++ trunk/refman-5.0/news-5.0.xml 2007-07-07 19:15:32 UTC (rev 7039)
Changed blocks: 1, Lines Added: 0, Lines Deleted: 7; 692 bytes
@@ -7146,13 +7146,6 @@
<listitem>
<para>
- The server would crash when the size of an
- <literal>ARCHIVE</literal> table grew beyond 2GB. (Bug #15787)
- </para>
- </listitem>
-
- <listitem>
- <para>
Created a user function with an empty string (that is,
<literal>CREATE FUNCTION ''()</literal>), was accepted by the
server. Following this, calling <literal>SHOW FUNCTION
Modified: trunk/refman-5.0/releasenotes-es-5.0.xml
===================================================================
--- trunk/refman-5.0/releasenotes-es-5.0.xml 2007-07-07 16:32:24 UTC (rev 7038)
+++ trunk/refman-5.0/releasenotes-es-5.0.xml 2007-07-07 19:15:32 UTC (rev 7039)
Changed blocks: 1, Lines Added: 45, Lines Deleted: 0; 1809 bytes
@@ -102,6 +102,51 @@
<listitem>
<para>
+ <command>gcov</command> coverage-testing information was not
+ written if the server crashed. (Bug #29543)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <literal>FULLTEXT</literal> indexes could be corrupted by
+ certain <literal>gbk</literal> characters. (Bug #29299)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <literal>REPLACE</literal>, <literal>INSERT IGNORE</literal>,
+ and <literal>UPDATE IGNORE</literal> did not work for
+ <literal>FEDERATED</literal> tables. (Bug #29019)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <literal>CHECK TABLE</literal> for <literal>ARCHIVE</literal>
+ tables could falsely report table corruption or cause a server
+ crash. (Bug #29207)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Dropping a user-defined function could cause a server crash if
+ the function was still in use by another thread. (Bug #27564)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ The server crashed when the size of an
+ <literal>ARCHIVE</literal> table grew larger than 2GB. (Bug
+ #15787)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
An assertion failure occurred if a query contained a
conjunctive predicate of the form
<literal><replaceable>view_column</replaceable> =
Modified: trunk/refman-5.1/news-5.1.xml
===================================================================
--- trunk/refman-5.1/news-5.1.xml 2007-07-07 16:32:24 UTC (rev 7038)
+++ trunk/refman-5.1/news-5.1.xml 2007-07-07 19:15:32 UTC (rev 7039)
Changed blocks: 1, Lines Added: 66, Lines Deleted: 0; 2351 bytes
@@ -140,6 +140,72 @@
<listitem>
<para>
+ <command>gcov</command> coverage-testing information was not
+ written if the server crashed. (Bug #29543)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <literal>FULLTEXT</literal> indexes could be corrupted by
+ certain <literal>gbk</literal> characters. (Bug #29299)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <literal>REPLACE</literal>, <literal>INSERT IGNORE</literal>,
+ and <literal>UPDATE IGNORE</literal> did not work for
+ <literal>FEDERATED</literal> tables. (Bug #29019)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <literal>CHECK TABLE</literal> for <literal>ARCHIVE</literal>
+ tables could falsely report table corruption or cause a server
+ crash. (Bug #29207)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <literal>SELECT ... FOR UPDATE</literal> with partitioned
+ tables could cause a server crash. (Bug #28026)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Updates to rows in a partitioned table could update the wrong
+ column. (Bug #26827)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Updates to a <literal>CSV</literal> table could cause a server
+ crash or update the table with incorrect values. (Bug #28971)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Dropping a user-defined function could cause a server crash if
+ the function was still in use by another thread. (Bug #27564)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ The server crashed when the size of an
+ <literal>ARCHIVE</literal> table grew larger than 2GB. (Bug
+ #15787)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
An assertion failure occurred if a query contained a
conjunctive predicate of the form
<literal><replaceable>view_column</replaceable> =
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r7039 - in trunk: . refman-4.1 refman-5.0 refman-5.1 | paul | 7 Jul |