Author: paul
Date: 2007-03-15 04:27:03 +0100 (Thu, 15 Mar 2007)
New Revision: 5376
Log:
r17705@frost: paul | 2007-03-14 22:26:06 -0500
Document bugfixes:
Bug#15757
Bug#19342
Bug#20293
Bug#22331
Bug#25673
Bug#26238
Bug#26464
Bug#26661
Bug#26830
Modified:
trunk/refman-4.1/news-4.1.xml
trunk/refman-4.1/storage-engines.xml
trunk/refman-5.0/releasenotes-es-5.0.xml
trunk/refman-5.0/se-merge.xml
trunk/refman-5.1/news-5.1.xml
trunk/refman-5.1/se-merge.xml
Property changes on: trunk
___________________________________________________________________
Name: svk:merge
- 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:21582
7d8d2c4e-af1d-0410-ab9f-b038ce55645b:/mysqldoc-local/mysqldoc:17701
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:14218
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:14593
+ 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:21582
7d8d2c4e-af1d-0410-ab9f-b038ce55645b:/mysqldoc-local/mysqldoc:17705
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:14218
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:14593
Modified: trunk/refman-4.1/news-4.1.xml
===================================================================
--- trunk/refman-4.1/news-4.1.xml 2007-03-15 00:28:10 UTC (rev 5375)
+++ trunk/refman-4.1/news-4.1.xml 2007-03-15 03:27:03 UTC (rev 5376)
Changed blocks: 1, Lines Added: 17, Lines Deleted: 0; 1058 bytes
@@ -260,6 +260,23 @@
<listitem>
<para>
+ <literal>INSERT DELAYED</literal> statements are not supported
+ for <literal>MERGE</literal> tables, but the
+ <literal>MERGE</literal> storage engine was not rejecting such
+ statements, resulting in table corruption. (Bug #26464)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ In certain cases it could happen that deleting a row corrupted
+ an <literal>RTREE</literal> index. This affected indexes on
+ spatial columns. (Bug #25673)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
Added support for <option>--debugger=dbx</option> for
<command>mysql-test-run.pl</command> and fixed support for
<option>--debugger=devenv</option>,
Modified: trunk/refman-4.1/storage-engines.xml
===================================================================
--- trunk/refman-4.1/storage-engines.xml 2007-03-15 00:28:10 UTC (rev 5375)
+++ trunk/refman-4.1/storage-engines.xml 2007-03-15 03:27:03 UTC (rev 5376)
Changed blocks: 1, Lines Added: 7, Lines Deleted: 0; 568 bytes
@@ -2312,6 +2312,13 @@
</para>
</listitem>
+ <listitem>
+ <para>
+ The <literal>MERGE</literal> storage engine does not support
+ <literal>INSERT DELAYED</literal> statements.
+ </para>
+ </listitem>
+
</itemizedlist>
</section>
Modified: trunk/refman-5.0/releasenotes-es-5.0.xml
===================================================================
--- trunk/refman-5.0/releasenotes-es-5.0.xml 2007-03-15 00:28:10 UTC (rev 5375)
+++ trunk/refman-5.0/releasenotes-es-5.0.xml 2007-03-15 03:27:03 UTC (rev 5376)
Changed blocks: 1, Lines Added: 79, Lines Deleted: 0; 3005 bytes
@@ -157,6 +157,85 @@
<listitem>
<para>
+ <literal>EXPLAIN EXTENDED</literal> did not show
+ <literal>WHERE</literal> conditions that were optimized away.
+ (Bug #22331)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <literal>INSERT DELAYED</literal> statements inserted
+ incorrect values into <literal>BIT</literal> columns. (Bug
+ #26238)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ For <literal><replaceable>expr</replaceable>
+ IN(<replaceable>value_list</replaceable>)</literal>, the
+ result could be incorrect if <literal>BIGINT
+ UNSIGNED</literal> values were used for
+ <replaceable>expr</replaceable> or in the value list. (Bug
+ #19342)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ When a <literal>TIME_FORMAT()</literal> expression was used as
+ a column in a <literal>GROUP BY</literal> clause, the
+ expression result was truncated. (Bug #20293)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ For <literal>SUBSTRING()</literal> evaluation using a
+ temporary table, when <literal>SUBSTRING()</literal> was used
+ on a LONGTEXT column, the <literal>max_length</literal>
+ metadata value of the result was incorrectly calculated and
+ set to 0. Consequently, an empty string was returned instead
+ of the correct result. (Bug #15757)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Use of a subquery containing <literal>GROUP BY</literal> and
+ <literal>WITH ROLLUP</literal> caused a server crash. (Bug
+ #26830)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Use of a subquery containing a <literal>UNION</literal> with
+ an invalid <literal>ORDER BY</literal> clause caused a server
+ crash. (Bug #26661)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <literal>INSERT DELAYED</literal> statements are not supported
+ for <literal>MERGE</literal> tables, but the
+ <literal>MERGE</literal> storage engine was not rejecting such
+ statements, resulting in table corruption. (Bug #26464)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ In certain cases it could happen that deleting a row corrupted
+ an <literal>RTREE</literal> index. This affected indexes on
+ spatial columns. (Bug #25673)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
SSL connections failed on Windows. (Bug #26678)
</para>
</listitem>
Modified: trunk/refman-5.0/se-merge.xml
===================================================================
--- trunk/refman-5.0/se-merge.xml 2007-03-15 00:28:10 UTC (rev 5375)
+++ trunk/refman-5.0/se-merge.xml 2007-03-15 03:27:03 UTC (rev 5376)
Changed blocks: 1, Lines Added: 7, Lines Deleted: 0; 525 bytes
@@ -690,6 +690,13 @@
</para>
</listitem>
+ <listitem>
+ <para>
+ The <literal>MERGE</literal> storage engine does not support
+ <literal>INSERT DELAYED</literal> statements.
+ </para>
+ </listitem>
+
</itemizedlist>
</section>
Modified: trunk/refman-5.1/news-5.1.xml
===================================================================
--- trunk/refman-5.1/news-5.1.xml 2007-03-15 00:28:10 UTC (rev 5375)
+++ trunk/refman-5.1/news-5.1.xml 2007-03-15 03:27:03 UTC (rev 5376)
Changed blocks: 2, Lines Added: 69, Lines Deleted: 1; 2747 bytes
@@ -182,7 +182,7 @@
</para>
<itemizedlist>
-
+
<listitem>
<para>
<literal>NDB Cluster</literal>: An invalid pointer was
@@ -233,6 +233,74 @@
<listitem>
<para>
+ <literal>EXPLAIN EXTENDED</literal> did not show
+ <literal>WHERE</literal> conditions that were optimized away.
+ (Bug #22331)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <literal>INSERT DELAYED</literal> statements inserted
+ incorrect values into <literal>BIT</literal> columns. (Bug
+ #26238)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ When a <literal>TIME_FORMAT()</literal> expression was used as
+ a column in a <literal>GROUP BY</literal> clause, the
+ expression result was truncated. (Bug #20293)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ For <literal>SUBSTRING()</literal> evaluation using a
+ temporary table, when <literal>SUBSTRING()</literal> was used
+ on a LONGTEXT column, the <literal>max_length</literal>
+ metadata value of the result was incorrectly calculated and
+ set to 0. Consequently, an empty string was returned instead
+ of the correct result. (Bug #15757)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Use of a subquery containing <literal>GROUP BY</literal> and
+ <literal>WITH ROLLUP</literal> caused a server crash. (Bug
+ #26830)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ Use of a subquery containing a <literal>UNION</literal> with
+ an invalid <literal>ORDER BY</literal> clause caused a server
+ crash. (Bug #26661)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ <literal>INSERT DELAYED</literal> statements are not supported
+ for <literal>MERGE</literal> tables, but the
+ <literal>MERGE</literal> storage engine was not rejecting such
+ statements, resulting in table corruption. (Bug #26464)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
+ In certain cases it could happen that deleting a row corrupted
+ an <literal>RTREE</literal> index. This affected indexes on
+ spatial columns. (Bug #25673)
+ </para>
+ </listitem>
+
+ <listitem>
+ <para>
SSL connections failed on Windows. (Bug #26678)
</para>
</listitem>
Modified: trunk/refman-5.1/se-merge.xml
===================================================================
--- trunk/refman-5.1/se-merge.xml 2007-03-15 00:28:10 UTC (rev 5375)
+++ trunk/refman-5.1/se-merge.xml 2007-03-15 03:27:03 UTC (rev 5376)
Changed blocks: 1, Lines Added: 7, Lines Deleted: 0; 525 bytes
@@ -682,6 +682,13 @@
</para>
</listitem>
+ <listitem>
+ <para>
+ The <literal>MERGE</literal> storage engine does not support
+ <literal>INSERT DELAYED</literal> statements.
+ </para>
+ </listitem>
+
</itemizedlist>
</section>
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r5376 - in trunk: . refman-4.1 refman-5.0 refman-5.1 | paul | 15 Mar |