List:Commits« Previous MessageNext Message »
From:jon Date:June 26 2006 3:21pm
Subject:svn commit - mysqldoc@docsrva: r2515 - trunk/refman-common
View as plain text  
Author: jstephens
Date: 2006-06-26 17:21:13 +0200 (Mon, 26 Jun 2006)
New Revision: 2515

Log:

Documenting Server bugfixes:
  Bug #10210, Bug #12728, Bug #18948, Bug #20078, Bug #20357



Modified:
   trunk/refman-common/news-4.0.xml
   trunk/refman-common/news-4.1.xml
   trunk/refman-common/news-5.0.xml
   trunk/refman-common/news-5.1.xml

Modified: trunk/refman-common/news-4.0.xml
===================================================================
--- trunk/refman-common/news-4.0.xml	2006-06-26 13:14:51 UTC (rev 2514)
+++ trunk/refman-common/news-4.0.xml	2006-06-26 15:21:13 UTC (rev 2515)
@@ -125,7 +125,61 @@
     For a full list of changes, please refer to the changelog sections
     for each individual 4.0.x release.
   </para>
+  
+  <section id="news-4-0-28">
 
+  <title>&title-news-4-0-28;</title>
+
+  <para role="release-level">
+    This is a bugfix release for the previous production release family.    
+  </para>
+
+  <para>
+    This section documents all changes and bug fixes that have been
+    applied since the last official MySQL release. If you would like to
+    receive more fine-grained and personalized <emphasis>update
+    alerts</emphasis> about fixes that are relevant to the version and
+    features you use, please consider subscribing to <emphasis>MySQL
+    Network</emphasis> (a commercial MySQL offering). For more details
+    please see
+    <ulink url="http://www.mysql.com/network/advisors.html"/>.
+  </para>
+
+  <para>
+    Functionality added or changed:
+  </para>
+
+  <itemizedlist>
+
+    <listitem>
+      <para></para>
+    </listitem>
+
+  </itemizedlist>
+
+  <para>
+    Bugs fixed:
+  </para>
+
+  <itemizedlist>
+
+    <listitem>
+      <para>
+        A query with a <literal>WHERE</literal> clause containing
+        <literal><replaceable>column</replaceable> =
+          ELT(<replaceable>int_value_1</replaceable>,
+        <replaceable>value_list</replaceable>) OR
+          <replaceable>column</replaceable> =
+          ELT(<replaceable>int_value_2</replaceable>,
+          <replaceable>value_list</replaceable>)</literal> could return
+        unexpected results. (Bug #12728)
+      </para>
+    </listitem>
+
+  </itemizedlist>
+
+</section>
+
   <section id="news-4-0-27">
 
     <title>&title-news-4-0-27;</title>

Modified: trunk/refman-common/news-4.1.xml
===================================================================
--- trunk/refman-common/news-4.1.xml	2006-06-26 13:14:51 UTC (rev 2514)
+++ trunk/refman-common/news-4.1.xml	2006-06-26 15:21:13 UTC (rev 2515)
@@ -200,6 +200,25 @@
     </para>
 
     <itemizedlist>
+      
+      <listitem>
+        <para>
+          Queries using an indexed column as the argument for the
+          <literal>MIN()</literal> and <literal>MAX()</literal>
+          functions following an <literal>ALTER TABLE .. DISABLE
+          KEYS</literal> statement returned <errortext>Got error 124
+          from storage engine</errortext> until <literal>ALTER TABLE
+          ... ENABLE KEYS</literal> was run on the table. (Bug #20357) 
+        </para>
+      </listitem>
+      
+      <listitem>
+        <para>
+          A number of dependency issues in the RPM
+          <literal>bench</literal> and <literal>test</literal> packages
+          caused installation of these packages to fail. (Bug #20078)
+        </para>
+      </listitem>
 
       <listitem>
         <para>

Modified: trunk/refman-common/news-5.0.xml
===================================================================
--- trunk/refman-common/news-5.0.xml	2006-06-26 13:14:51 UTC (rev 2514)
+++ trunk/refman-common/news-5.0.xml	2006-06-26 15:21:13 UTC (rev 2515)
@@ -332,6 +332,25 @@
     </para>
 
     <itemizedlist>
+      
+      <listitem>
+        <para>
+          Queries using an indexed column as the argument for the
+          <literal>MIN()</literal> and <literal>MAX()</literal>
+          functions following an <literal>ALTER TABLE .. DISABLE
+          KEYS</literal> statement returned <errortext>Got error 124
+          from storage engine</errortext> until <literal>ALTER TABLE
+          ... ENABLE KEYS</literal> was run on the table. (Bug #20357) 
+        </para>
+      </listitem>
+      
+      <listitem>
+        <para>
+          A number of dependency issues in the RPM
+          <literal>bench</literal> and <literal>test</literal> packages
+          caused installation of these packages to fail. (Bug #20078)
+        </para>
+      </listitem>
 
       <listitem>
         <para>

Modified: trunk/refman-common/news-5.1.xml
===================================================================
--- trunk/refman-common/news-5.1.xml	2006-06-26 13:14:51 UTC (rev 2514)
+++ trunk/refman-common/news-5.1.xml	2006-06-26 15:21:13 UTC (rev 2515)
@@ -213,6 +213,70 @@
 REPAIR TABLE <replaceable>tbl_name</replaceable> QUICK;
 </programlisting>
       </listitem>
+      
+      <listitem>
+        <para>
+          There were several issues regarding how <literal>SHOW
+            STATUS</literal> affected some status variables and logging
+          which could impact monitoring the MySQL Server. The behavior
+          of this statement has been modified in two ways:
+        </para>
+        
+        <itemizedlist>
+          <listitem>
+            <para><literal>SHOW STATUS</literal> is no longer logged to
+              the slow query log.
+            </para>
+          </listitem>
+          
+          <listitem>
+            <para>
+              <literal>SHOW STATUS</literal> no longer updates any
+              session status variables, except for
+              <literal>com_show_status</literal>.
+            </para>
+          </listitem>          
+        </itemizedlist>
+        
+        <para>
+          However, <literal>SHOW STATUS</literal> continues to update
+          <emphasis>global</emphasis> status variables to allow
+          monitoring of what the server is actually doing. This is
+          because <literal>SHOW STATUS</literal> creates temporary
+          tables that may affect performance if it is called excessively
+          often.
+        </para>
+        
+      </listitem>
+      
+      <listitem>
+        <para>
+          A number of dependency issues in the RPM
+          <literal>bench</literal> and <literal>test</literal> packages
+          caused installation of these packages to fail. (Bug #20078)
+        </para>
+      </listitem>
+      
+      <listitem>
+        <para>
+          Queries using an indexed column as the argument for the
+          <literal>MIN()</literal> and <literal>MAX()</literal>
+          functions following an <literal>ALTER TABLE .. DISABLE
+          KEYS</literal> statement returned <errortext>Got error 124
+          from storage engine</errortext> until <literal>ALTER TABLE
+          ... ENABLE KEYS</literal> was run on the table. (Bug #20357) 
+        </para>
+      </listitem>
+      
+      <listitem>
+        <para>
+          A redundant table map event could be generated in the binary
+          log when there were no actual changes to a table being
+          replicated. In addition, a slave failed to stop when
+          attempting to replicate a table that did not exist on the
+          slave. (Bug #18948)
+        </para>
+      </listitem>
 
       <listitem>
         <para>

Thread
svn commit - mysqldoc@docsrva: r2515 - trunk/refman-commonjon26 Jun