List:Commits« Previous MessageNext Message »
From:paul Date:October 24 2007 9:21pm
Subject:svn commit - mysqldoc@docsrva: r8306 - in trunk: . dynamic-docs/changelog
View as plain text  
Author: paul
Date: 2007-10-24 21:21:10 +0200 (Wed, 24 Oct 2007)
New Revision: 8306

Log:
 r26148@frost:  paul | 2007-10-24 14:19:46 -0500
 Documented bugfixes:
 Bug#20550: Stored function: wrong RETURN type metadata when used in a VIEW
 Bug#27040: Incorrect FTS parser name output
 Bug#27249: table_wild with alias: select t1.* as something
 Bug#27747: database metadata doesn't return sufficient column default info
 Bug#28318: CREATE FUNCTION (UDF) requires a schema
 Bug#29223: declare cursor c for SHOW .....
 Bug#29772: Error compiling with option --without-geometry
 Bug#29816: Syntactically wrong query fails with misleading error message
 Bug#31415: ndb api libraries and headers missing from 5.1.22 binary tarball
 Bug#31692: binlog_killed.test crashes sometimes


Modified:
   trunk/dynamic-docs/changelog/mysqld.xml

Property changes on: trunk
___________________________________________________________________
Name: svk:merge
   - 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:31592
7d8d2c4e-af1d-0410-ab9f-b038ce55645b:/mysqldoc-local/mysqldoc:26144
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:14218
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:20005
   + 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:31592
7d8d2c4e-af1d-0410-ab9f-b038ce55645b:/mysqldoc-local/mysqldoc:26148
b5ec3a16-e900-0410-9ad2-d183a3acac99:/mysqldoc-local/mysqldoc/trunk:14218
bf112a9c-6c03-0410-a055-ad865cd57414:/mysqldoc-local/mysqldoc/trunk:20005


Modified: trunk/dynamic-docs/changelog/mysqld.xml
===================================================================
--- trunk/dynamic-docs/changelog/mysqld.xml	2007-10-24 18:29:29 UTC (rev 8305)
+++ trunk/dynamic-docs/changelog/mysqld.xml	2007-10-24 19:21:10 UTC (rev 8306)
Changed blocks: 1, Lines Added: 245, Lines Deleted: 0; 4874 bytes

@@ -139762,4 +139762,249 @@
 
   </logentry>
 
+  <logentry entrytype="bug">
+
+    <tags>
+      <highlight type="incompatiblechange"/>
+      <manual type="cursors"/>
+      <manual type="SHOW"/>
+    </tags>
+
+    <bugs>
+      <fixes bugid="29223"/>
+    </bugs>
+
+    <versions>
+      <version ver="5.1.23"/>
+    </versions>
+
+    <message>
+
+      <para>
+        Within a stored routine, it is no longer allowable to declare a
+        cursor for a <literal>SHOW</literal> statement. This happened to
+        work in some instances, but is no longer supported.
+      </para>
+
+    </message>
+
+  </logentry>
+
+  <logentry entrytype="bug">
+
+    <tags>
+      <manual type="UDF"/>
+      <manual type="parser"/>
+      <manual type="CREATE FUNCTION"/>
+    </tags>
+
+    <bugs>
+      <fixes bugid="28318"/>
+      <fixes bugid="29816"/>
+    </bugs>
+
+    <versions>
+      <version ver="5.0.52"/>
+      <version ver="5.1.23"/>
+    </versions>
+
+    <message>
+
+      <para>
+        The parser confused user-defined function (UDF) and stored
+        function creation for <literal>CREATE FUNCTION</literal> and
+        required that there be a default database when creating UDFs,
+        although there is no such requirement.
+      </para>
+
+    </message>
+
+  </logentry>
+
+  <logentry entrytype="bug">
+
+    <tags>
+      <manual type="compiling"/>
+      <manual type="configuration"/>
+    </tags>
+
+    <bugs>
+      <fixes bugid="29972"/>
+    </bugs>
+
+    <versions>
+      <version ver="5.0.52"/>
+      <version ver="5.1.23"/>
+    </versions>
+
+    <message>
+
+      <para>
+        Specifying the <option>--without-geometry</option> option for
+        <command>configure</command> caused server compilation to fail.
+      </para>
+
+    </message>
+
+  </logentry>
+
+  <logentry entrytype="bug">
+
+    <tags>
+      <manual type="packaging"/>
+    </tags>
+
+    <bugs>
+      <fixes bugid="31414"/>
+    </bugs>
+
+    <versions>
+      <version ver="5.1.23"/>
+    </versions>
+
+    <message>
+
+      <para>
+        NDB libraries and include files were missing from some binary
+        <command>tar</command> file distributions.
+      </para>
+
+    </message>
+
+  </logentry>
+
+  <logentry entrytype="feature">
+
+    <tags>
+      <highlight type="incompatiblechange"/>
+      <manual type="aliases"/>
+    </tags>
+
+    <bugs>
+      <fixes bugid="27249"/>
+    </bugs>
+
+    <versions>
+      <version ver="5.2.6"/>
+    </versions>
+
+    <message>
+
+      <para>
+        Aliases for wildcards (as in <literal>SELECT t.* AS 'alias' FROM
+        t</literal>) are no longer accepted and result in an error.
+        Previously, such aliases were ignored silently.
+      </para>
+
+    </message>
+
+  </logentry>
+
+  <logentry entrytype="bug">
+
+    <tags>
+      <manual type="metadata"/>
+    </tags>
+
+    <bugs>
+      <fixes bugid="20550"/>
+    </bugs>
+
+    <versions>
+      <version ver="5.1.23"/>
+    </versions>
+
+    <message>
+
+      <para>
+        If a column selected by a view referred to a stored function,
+        the data type reported for the column in
+        <literal>INFORMATION_SCHEMA.COLUMNS</literal> could be
+        incorrect.
+      </para>
+
+    </message>
+
+  </logentry>
+
+  <logentry entrytype="bug">
+
+    <tags>
+      <manual type="log tables"/>
+      <manual type="locking"/>
+    </tags>
+
+    <bugs>
+      <fixes bugid="31692"/>
+    </bugs>
+
+    <versions>
+      <version ver="5.1.23"/>
+    </versions>
+
+    <message>
+
+      <para>
+        The server crashed if a thread was killed while locking the
+        <literal>general_log</literal> table at the beginning of
+        statement processing.
+      </para>
+
+    </message>
+
+  </logentry>
+
+  <logentry entrytype="bug">
+
+    <tags>
+      <manual type="FULLTEXT"/>
+    </tags>
+
+    <bugs>
+      <fixes bugid="27040"/>
+    </bugs>
+
+    <versions>
+      <version ver="5.1.23"/>
+    </versions>
+
+    <message>
+
+      <para>
+        For a table that used different full-text parsers for different
+        <literal>FULLTEXT</literal> indexes, <literal>SHOW CREATE
+        TABLE</literal> displayed the first parser name for all of them.
+      </para>
+
+    </message>
+
+  </logentry>
+
+  <logentry entrytype="bug">
+
+    <tags>
+      <manual type="SHOW COLUMNS"/>
+    </tags>
+
+    <bugs>
+      <fixes bugid="27747"/>
+    </bugs>
+
+    <versions>
+      <version ver="5.0.50"/>
+      <version ver="5.1.23"/>
+    </versions>
+
+    <message>
+
+      <para>
+        <literal>SHOW COLUMNS</literal> returned
<literal>NULL</literal>
+        instead of the empty string for the <literal>Default</literal>
+        value of columns that had no default specified.
+      </para>
+
+    </message>
+
+  </logentry>
+
 </changelog>


Thread
svn commit - mysqldoc@docsrva: r8306 - in trunk: . dynamic-docs/changelogpaul24 Oct