List:Commits« Previous MessageNext Message »
From:paul Date:December 13 2006 8:15pm
Subject:svn commit - mysqldoc@docsrva: r4243 - in trunk: . refman-4.1 refman-5.0 refman-5.1
View as plain text  
Author: paul
Date: 2006-12-13 21:15:17 +0100 (Wed, 13 Dec 2006)
New Revision: 4243

Log:
 r13616@frost:  paul | 2006-12-13 14:13:05 -0600
 Documented bugfixes:
 Bug#11927
 Bug#20327
 Bug#20589
 Bug#20691
 Bug#20836
 Bug#21765
 Bug#22029
 Bug#22372


Modified:
   trunk/refman-4.1/news-4.1.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:17065
7d8d2c4e-af1d-0410-ab9f-b038ce55645b:/mysqldoc-local/mysqldoc:13555
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:14218
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:12760
   + 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:17065
7d8d2c4e-af1d-0410-ab9f-b038ce55645b:/mysqldoc-local/mysqldoc:13616
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:14218
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:12760


Modified: trunk/refman-4.1/news-4.1.xml
===================================================================
--- trunk/refman-4.1/news-4.1.xml	2006-12-13 19:16:56 UTC (rev 4242)
+++ trunk/refman-4.1/news-4.1.xml	2006-12-13 20:15:17 UTC (rev 4243)
Changed blocks: 1, Lines Added: 26, Lines Deleted: 1; 1292 bytes

@@ -198,9 +198,34 @@
     </para>
 
     <itemizedlist>
-      
+
       <listitem>
         <para>
+          <literal>STR_TO_DATE()</literal> returned
+          <literal>NULL</literal> if the format string contained a space
+          following a non-format character. (Bug #22029)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          Selecting into variables sometimes returned incorrect wrong
+          results. (Bug #20836)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          A server crash occurred when using <literal>LOAD
+          DATA</literal> to load a table containing a <literal>NOT
+          NULL</literal> spatial column, when the statement did not load
+          the spatial column. Now a <literal>NULL supplied to NOT NULL
+          column</literal> error occurs. (Bug #22372)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
           The <option>--extern</option> option for
           <command>mysql-test-run.pl</command> did not function
           correctly. (Bug #24354)


Modified: trunk/refman-5.0/releasenotes-es-5.0.xml
===================================================================
--- trunk/refman-5.0/releasenotes-es-5.0.xml	2006-12-13 19:16:56 UTC (rev 4242)
+++ trunk/refman-5.0/releasenotes-es-5.0.xml	2006-12-13 20:15:17 UTC (rev 4243)
Changed blocks: 6, Lines Added: 82, Lines Deleted: 8; 4418 bytes

@@ -82,6 +82,12 @@
         </para>
       </listitem>
 
+      <listitem>
+        <para>
+          The bundled yaSSL library was upgraded to version 1.5.0.
+        </para>
+      </listitem>
+
     </itemizedlist>
 
     <para>

@@ -89,7 +95,7 @@
     </para>
 
     <itemizedlist>
-      
+
       <listitem>
         <para>
           <literal>NDB Cluster</literal>: <command>ndb_config</command>

@@ -141,21 +147,89 @@
           non-primary key. (Bug #18487, Bug #24303)
         </para>
       </listitem>
-      
+
       <listitem>
         <para>
+          Warnings were generated when explicitly casting a character to
+          a number (for example, <literal>CAST('x' AS
+          SIGNED)</literal>), but not for implicit conversions in simple
+          arithmetic operations (such as <literal>'x' + 0</literal>).
+          Now warnings are generated in all cases. (Bug #11927)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          <literal>STR_TO_DATE()</literal> returned
+          <literal>NULL</literal> if the format string contained a space
+          following a non-format character. (Bug #22029)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          yaSSL crashed on pre-Pentium Intel CPUs. (Bug #21765)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          Selecting into variables sometimes returned incorrect wrong
+          results. (Bug #20836)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          Inserting <literal>DEFAULT</literal> into a column with no
+          default value could result in garbage in the column. Now the
+          same result occurs as when inserting <literal>NULL</literal>
+          into a <literal>NOT NULL</literal> column. (Bug #20691)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          <filename>mysql_fix_privilege_tables.sql</filename> altered
+          the <literal>table_privs.table_priv</literal> column to
+          contain too few privileges, causing loss of the
+          <literal>CREATE VIEW</literal> and <literal>SHOW
+          VIEW</literal> privileges. (Bug #20589)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          A query with a subquery that references columns of a view from
+          the outer <literal>SELECT</literal> could return an incorrect
+          result if used from a prepared statement. (Bug #20327)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          A server crash occurred when using <literal>LOAD
+          DATA</literal> to load a table containing a <literal>NOT
+          NULL</literal> spatial column, when the statement did not load
+          the spatial column. Now a <literal>NULL supplied to NOT NULL
+          column</literal> error occurs. (Bug #22372)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
           Unsigned <literal>BIGINT</literal> values treated as signed
           values by the <literal>MOD()</literal> function. (Bug #19955)
         </para>
       </listitem>
-      
+
       <listitem>
         <para>
           Compiling PHP 5.1 with the MySQL static libraries failed on
           some versions of Linux. (Bug #19817)
         </para>
       </listitem>
-      
+
       <listitem>
         <para>
           The <literal>DELIMITER</literal> statement did not work

@@ -163,7 +237,7 @@
           <literal>SOURCE</literal> statement. (Bug #19799)
         </para>
       </listitem>
-      
+
       <listitem>
         <para>
           <literal>VARBINARY</literal> column values inserted on a MySQL

@@ -171,7 +245,7 @@
           or later. (Bug #19371)
         </para>
       </listitem>
-      
+
       <listitem>
         <para>
           Constant expressions and some numeric constants used as input

@@ -179,14 +253,14 @@
           constants. (Bug #18761)
         </para>
       </listitem>
-      
+
       <listitem>
         <para>
           Subqueries of the form <literal>NULL IN (SELECT ...)</literal>
           returned invalid results. (Bug #8804, Bug #23485)
         </para>
       </listitem>
-      
+
       <listitem>
         <para>
           The <option>--extern</option> option for


Modified: trunk/refman-5.1/news-5.1.xml
===================================================================
--- trunk/refman-5.1/news-5.1.xml	2006-12-13 19:16:56 UTC (rev 4242)
+++ trunk/refman-5.1/news-5.1.xml	2006-12-13 20:15:17 UTC (rev 4243)
Changed blocks: 7, Lines Added: 95, Lines Deleted: 12; 5712 bytes

@@ -100,7 +100,7 @@
           information about possible workarounds. (Bug #22860)
         </para>
       </listitem>
-      
+
       <listitem>
         <para>
           The default value of the <literal>max_connections</literal>

@@ -109,22 +109,28 @@
           trying to access MySQL than the default number of connections
           available.
         </para>
-        
+
         <para>
           (The maximum number of Apache processes is determined by the
           Apache <literal>MaxClient</literal>, which defaults to 256,
           but is usually set to 150 in the
           <filename>httpd.conf</filename> commonly distributed with
           Apache. For more information about
-          <literal>MaxClient</literal>, see 
+          <literal>MaxClient</literal>, see
           <ulink url="http://httpd.apache.org/docs/2.2/mod/mpm_common.html#maxclients"/>.)
         </para>
-        
+
         <para>
           (Bug #23883)
         </para>
       </listitem>
 
+      <listitem>
+        <para>
+          The bundled yaSSL library was upgraded to version 1.5.0.
+        </para>
+      </listitem>
+
     </itemizedlist>
 
     <para>

@@ -132,7 +138,7 @@
     </para>
 
     <itemizedlist>
-      
+
       <listitem>
         <para>
           <literal>NDB Cluster</literal>: <command>ndb_config</command>

@@ -140,21 +146,71 @@
           (Bug #23887)
         </para>
       </listitem>
-      
+
       <listitem>
         <para>
+          <literal>STR_TO_DATE()</literal> returned
+          <literal>NULL</literal> if the format string contained a space
+          following a non-format character. (Bug #22029)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          yaSSL crashed on pre-Pentium Intel CPUs. (Bug #21765)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          Selecting into variables sometimes returned incorrect wrong
+          results. (Bug #20836)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          Inserting <literal>DEFAULT</literal> into a column with no
+          default value could result in garbage in the column. Now the
+          same result occurs as when inserting <literal>NULL</literal>
+          into a <literal>NOT NULL</literal> column. (Bug #20691)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          <filename>mysql_fix_privilege_tables.sql</filename> altered
+          the <literal>table_privs.table_priv</literal> column to
+          contain too few privileges, causing loss of the
+          <literal>CREATE VIEW</literal> and <literal>SHOW
+          VIEW</literal> privileges. (Bug #20589)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          A server crash occurred when using <literal>LOAD
+          DATA</literal> to load a table containing a <literal>NOT
+          NULL</literal> spatial column, when the statement did not load
+          the spatial column. Now a <literal>NULL supplied to NOT NULL
+          column</literal> error occurs. (Bug #22372)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
           Unsigned <literal>BIGINT</literal> values treated as signed
           values by the <literal>MOD()</literal> function. (Bug #19955)
         </para>
       </listitem>
-      
+
       <listitem>
         <para>
           Compiling PHP 5.1 with the MySQL static libraries failed on
           some versions of Linux. (Bug #19817)
         </para>
       </listitem>
-      
+
       <listitem>
         <para>
           The <literal>DELIMITER</literal> statement did not work

@@ -162,7 +218,7 @@
           <literal>SOURCE</literal> statement. (Bug #19799)
         </para>
       </listitem>
-      
+
       <listitem>
         <para>
           <literal>VARBINARY</literal> column values inserted on a MySQL

@@ -170,14 +226,14 @@
           or later. (Bug #19371)
         </para>
       </listitem>
-      
+
       <listitem>
         <para>
           Subqueries of the form <literal>NULL IN (SELECT ...)</literal>
           returned invalid results. (Bug #8804, Bug #23485)
         </para>
       </listitem>
-      
+
       <listitem>
         <para>
           The <option>--extern</option> option for

@@ -649,9 +705,36 @@
           non-primary key. (Bug #18487, Bug #24303)
         </para>
       </listitem>
-      
+
       <listitem>
         <para>
+          Warnings were generated when explicitly casting a character to
+          a number (for example, <literal>CAST('x' AS
+          SIGNED)</literal>), but not for implicit conversions in simple
+          arithmetic operations (such as <literal>'x' + 0</literal>).
+          Now warnings are generated in all cases. (Bug #11927)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          <literal>BENCHMARK</literal>, <literal>ENCODE</literal>,
+          <literal>DECODE</literal>, and <literal>FORMAT</literal> could
+          only accept a constant for some parameters, and could not be
+          used in prepared statements. (Bug #22684)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
+          A query with a subquery that references columns of a view from
+          the outer <literal>SELECT</literal> could return an incorrect
+          result if used from a prepared statement. (Bug #20327)
+        </para>
+      </listitem>
+
+      <listitem>
+        <para>
           Constant expressions and some numeric constants used as input
           parameters to user-defined functions were not treated as
           constants. (Bug #18761)


Thread
svn commit - mysqldoc@docsrva: r4243 - in trunk: . refman-4.1 refman-5.0 refman-5.1paul13 Dec