Author: paul
Date: 2007-10-23 21:54:22 +0200 (Tue, 23 Oct 2007)
New Revision: 8276
Log:
r31592@polar: paul | 2007-10-23 14:52:11 -0500
Documented bugfixes:
Bug#20023: mysql_change_user() resets the value of SQL_BIG_SELECTS
Bug#21136: CREATE TABLE SELECT within CREATE TABLE SELECT causes server crash
Bug#24923: Functions with ENUM issues.
Bug#27358: INSERT DELAYED does not honour SQL_MODE of the client
Bug#27858: Failing to log to a log table doesn't log anything to error log.
Bug#31517: Potential crash due to access of NULL thd in mark_transaction_to_rollback()
Modified:
trunk/dynamic-docs/changelog/mysqld.xml
Property changes on: trunk
___________________________________________________________________
Name: svk:merge
- 4767c598-dc10-0410-bea0-d01b485662eb:/mysqldoc-local/mysqldoc/trunk:31584
7d8d2c4e-af1d-0410-ab9f-b038ce55645b:/mysqldoc-local/mysqldoc:25981
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:25981
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-23 19:39:45 UTC (rev 8275)
+++ trunk/dynamic-docs/changelog/mysqld.xml 2007-10-23 19:54:22 UTC (rev 8276)
Changed blocks: 1, Lines Added: 162, Lines Deleted: 0; 3416 bytes
@@ -139630,4 +139630,166 @@
</logentry>
+ <logentry entrytype="bug">
+
+ <tags>
+ <manual type="log tables"/>
+ </tags>
+
+ <bugs>
+ <fixes bugid="27858"/>
+ </bugs>
+
+ <versions>
+ <version ver="5.1.23"/>
+ </versions>
+
+ <message>
+
+ <para>
+ Failure to log to the <literal>general_log</literal> or
+ <literal>slow_log</literal> log tables were not logged to the
+ error log at all or were logged incorrectly.
+ </para>
+
+ </message>
+
+ </logentry>
+
+ <logentry entrytype="bug">
+
+ <tags>
+ <manual type="INSERT DELAYED"/>
+ <manual type="sql_mode"/>
+ </tags>
+
+ <bugs>
+ <fixes bugid="27358"/>
+ </bugs>
+
+ <versions>
+ <version ver="5.1.23"/>
+ </versions>
+
+ <message>
+
+ <para>
+ Changes to the <literal>sql_mode</literal> system variable were
+ not tracked by <literal>INSERT DELAYED</literal>.
+ </para>
+
+ </message>
+
+ </logentry>
+
+ <logentry entrytype="bug">
+
+ <tags>
+ <manual type="mysql.proc table"/>
+ </tags>
+
+ <bugs>
+ <fixes bugid="24923"/>
+ </bugs>
+
+ <versions>
+ <version ver="5.1.23"/>
+ </versions>
+
+ <message>
+
+ <para>
+ The <literal>returns</literal> column of the
+ <literal>mysql.proc</literal> table was
+ <literal>CHAR(64)</literal>, which is not long enough to store
+ long data types such as <literal>ENUM</literal> types. The
+ column has been changed to <literal>LONGBLOB</literal> and a
+ warning is generated if truncation occurs when storing a row
+ into the <literal>proc</literal> table.
+ </para>
+
+ </message>
+
+ </logentry>
+
+ <logentry entrytype="bug">
+
+ <tags>
+ <manual type="CREATE TABLE"/>
+ </tags>
+
+ <bugs>
+ <fixes bugid="21136"/>
+ </bugs>
+
+ <versions>
+ <version ver="5.1.23"/>
+ </versions>
+
+ <message>
+
+ <para>
+ A memory leak occurred when <literal>CREATE TEMPORARY TABLE ..
+ SELECT</literal> was invoked from a stored function that in turn
+ was called from <literal>CREATE TABLE ... SELECT</literal>.
+ </para>
+
+ </message>
+
+ </logentry>
+
+ <logentry entrytype="bug">
+
+ <tags>
+ <manual type="mysql_change_user()"/>
+ </tags>
+
+ <bugs>
+ <fixes bugid="20023"/>
+ </bugs>
+
+ <versions>
+ <version ver="5.1.23"/>
+ </versions>
+
+ <message>
+
+ <para>
+ The <function role="capi">mysql_change_user()</function> C API
+ function changed the value of the
+ <literal>SQL_BIG_SELECTS</literal> session variable.
+ </para>
+
+ </message>
+
+ </logentry>
+
+ <logentry entrytype="bug">
+
+ <tags>
+ <manual type="InnoDB"/>
+ </tags>
+
+ <bugs>
+ <fixes bugid="31517"/>
+ </bugs>
+
+ <versions>
+ <version ver="5.0.52"/>
+ <version ver="5.1.23"/>
+ </versions>
+
+ <message>
+
+ <para>
+ The fix for Bug #24989 introduced a problem such that a
+ <literal>NULL</literal> thread handler could be used during a
+ rollback operation. This problem is unlikely to be seen in
+ practice.
+ </para>
+
+ </message>
+
+ </logentry>
+
</changelog>
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r8276 - in trunk: . dynamic-docs/changelog | paul | 23 Oct |