Author: paul
Date: 2007-10-24 22:24:11 +0200 (Wed, 24 Oct 2007)
New Revision: 8307
Log:
r26150@frost: paul | 2007-10-24 15:23:37 -0500
Documented bugfixes:
Bug#19828: Case sensitivity in hostname leads to inconsistent behavior
Bug#28535: mistake in mysqldump error message
Bug#30444: 5.0 mysqldump silently allows wrong backup to be taken against a 4.0 database
Bug#30710: query_cache.test fails on embedded - per-column privs test
Bug#30747: Create table with identical constraint names behaves incorrectly
Bug#30821: setting --tc_heuristic_recover tries to set myisam_stats_method
Bug#30885: MEMORY returns incorrect data if BTREE index is used for NULL lookup
Bug#30992: Wrong implementation of pthread_mutex_trylock()
Bug#31154: field.h:1649: virtual int Field_bit::cmp(const uchar*, const uchar*): Assertion
Bug#31253: crash comparing datetime to double
Bug#31418: User locks misfunctioning after mysql_change_user()
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:26148
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:26150
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 19:21:10 UTC (rev 8306)
+++ trunk/dynamic-docs/changelog/mysqld.xml 2007-10-24 20:24:11 UTC (rev 8307)
Changed blocks: 3, Lines Added: 302, Lines Deleted: 3; 6288 bytes
@@ -138974,6 +138974,32 @@
<logentry entrytype="bug">
<tags>
+ <manual type="Windows"/>
+ </tags>
+
+ <bugs>
+ <fixes bugid="30992"/>
+ </bugs>
+
+ <versions>
+ <version ver="5.0.52"/>
+ <version ver="5.1.23"/>
+ </versions>
+
+ <message>
+
+ <para>
+ On Windows, the <function>pthread_mutex_trylock()</function>
+ implementation was incorrect.
+ </para>
+
+ </message>
+
+ </logentry>
+
+ <logentry entrytype="bug">
+
+ <tags>
<manual type="query cache"/>
<manual type="Windows"/>
</tags>
@@ -138989,9 +139015,9 @@
<message>
<para>
- On Windows, invalidating the query cache could cause a server
- crash due to the <function>pthread_mutex_trylock()</function>
- implementation.
+ On Windows, the <function>pthread_mutex_trylock()</function>
+ implementation was incorrect. One symptom was that invalidating
+ the query cache could cause a server crash.
</para>
</message>
@@ -140007,4 +140033,277 @@
</logentry>
+ <logentry entrytype="bug">
+
+ <tags>
+ <manual type="server options"/>
+ </tags>
+
+ <bugs>
+ <fixes bugid="30821"/>
+ </bugs>
+
+ <versions>
+ <version ver="5.0.52"/>
+ <version ver="5.1.23"/>
+ </versions>
+
+ <message>
+
+ <para>
+ Values for the <option>--tc-heuristic-recover</option> option
+ incorrectly were treated as values for the
+ <option>--myisam-stats-method</option> option.
+ </para>
+
+ </message>
+
+ </logentry>
+
+ <logentry entrytype="bug">
+
+ <tags>
+ <manual type="privileges"/>
+ </tags>
+
+ <bugs>
+ <fixes bugid="19828"/>
+ </bugs>
+
+ <versions>
+ <version ver="5.0.52"/>
+ <version ver="5.1.23"/>
+ </versions>
+
+ <message>
+
+ <para>
+ Hostnames sometimes were treated as case sensitive in
+ account-management statements (<literal>CREATE USER</literal>,
+ <literal>GRANT</literal>, <literal>REVOKE</literal>, and so
+ forth).
+ </para>
+
+ </message>
+
+ </logentry>
+
+ <logentry entrytype="bug">
+
+ <tags>
+ <manual type="MEMORY"/>
+ <manual type="BTREE"/>
+ </tags>
+
+ <bugs>
+ <fixes bugid="30885"/>
+ </bugs>
+
+ <versions>
+ <version ver="5.0.52"/>
+ <version ver="5.1.23"/>
+ </versions>
+
+ <message>
+
+ <para>
+ For <literal>MEMORY</literal> tables, lookups for
+ <literal>NULL</literal> values in <literal>BTREE</literal>
+ indexes could return incorrect results.
+ </para>
+
+ </message>
+
+ </logentry>
+
+ <logentry entrytype="bug">
+
+ <tags>
+ <manual type="mysqldump"/>
+ </tags>
+
+ <bugs>
+ <fixes bugid="30444"/>
+ </bugs>
+
+ <versions>
+ <version ver="4.1.24"/>
+ <version ver="5.0.52"/>
+ <version ver="5.1.23"/>
+ </versions>
+
+ <message>
+
+ <para>
+ Versions of <command>mysqldump</command> from MySQL 4.1 or
+ higher tried to use <literal>START TRANSACTION WITH CONSISTENT
+ SNAPSHOT</literal> if the <option>--single-transaction</option>
+ and <option>--master-data</option> options were given, even with
+ servers older than 4.1 that do not support consistent snapshots.
+ </para>
+
+ </message>
+
+ </logentry>
+
+ <logentry entrytype="bug">
+
+ <tags>
+ <manual type="mysql_change_user()"/>
+ <manual type="GET_LOCK()"/>
+ </tags>
+
+ <bugs>
+ <fixes bugid="31418"/>
+ </bugs>
+
+ <versions>
+ <version ver="5.1.23"/>
+ </versions>
+
+ <message>
+
+ <para>
+ The <function role="capi">mysql_change_user()</function> C API
+ function caused advisory locks (obtained with
+ <function role="sql">GET_LOCK()</function>) to malfunction.
+ </para>
+
+ </message>
+
+ </logentry>
+
+ <logentry entrytype="bug">
+
+ <tags>
+ <manual type="foreign keys"/>
+ </tags>
+
+ <bugs>
+ <fixes bugid="30747"/>
+ </bugs>
+
+ <versions>
+ <version ver="5.1.23"/>
+ </versions>
+
+ <message>
+
+ <para>
+ User-supplied names foreign key names might not be set to the
+ right key, leading to foreign keys with no name.
+ </para>
+
+ </message>
+
+ </logentry>
+
+ <logentry entrytype="bug">
+
+ <tags>
+ <manual type="CONVERT()"/>
+ </tags>
+
+ <bugs>
+ <fixes bugid="31253"/>
+ </bugs>
+
+ <versions>
+ <version ver="5.0.52"/>
+ <version ver="5.1.23"/>
+ </versions>
+
+ <message>
+
+ <para>
+ <literal>CONVERT(<replaceable>val</replaceable>,
+ DATETIME)</literal> would fail on invalid input, but processing
+ was not aborted for the <literal>WHERE</literal> clause, leading
+ to a server crash.
+ </para>
+
+ </message>
+
+ </logentry>
+
+ <logentry entrytype="bug">
+
+ <tags>
+ <manual type="GROUP_CONCAT()"/>
+ <manual type="BIT"/>
+ </tags>
+
+ <bugs>
+ <fixes bugid="31154"/>
+ </bugs>
+
+ <versions>
+ <version ver="5.0.52"/>
+ <version ver="5.1.23"/>
+ </versions>
+
+ <message>
+
+ <para>
+ Use of <literal>GROUP_CONCAT(DISTINCT
+ <replaceable>bit_column</replaceable>)</literal> caused an
+ assertion failure.
+ </para>
+
+ </message>
+
+ </logentry>
+
+ <logentry entrytype="bug">
+
+ <tags>
+ <manual type="libmysqld"/>
+ <manual type="privileges"/>
+ </tags>
+
+ <bugs>
+ <fixes bugid="30710"/>
+ </bugs>
+
+ <versions>
+ <version ver="5.1.23"/>
+ </versions>
+
+ <message>
+
+ <para>
+ The embedded server did not properly check column-level
+ privileges.
+ </para>
+
+ </message>
+
+ </logentry>
+
+ <logentry entrytype="bug">
+
+ <tags>
+ <manual type="mysqldump"/>
+ <manual type="error messages"/>
+ </tags>
+
+ <bugs>
+ <fixes bugid="28535"/>
+ </bugs>
+
+ <versions>
+ <version ver="5.1.23"/>
+ </versions>
+
+ <message>
+
+ <para>
+ <command>mysqldump</command> reversed the event name and program
+ name in one of its error messages.
+ </para>
+
+ </message>
+
+ </logentry>
+
</changelog>
| Thread |
|---|
| • svn commit - mysqldoc@docsrva: r8307 - in trunk: . dynamic-docs/changelog | paul | 24 Oct |