Below is the list of changes that have just been committed into a local
mysqldoc repository of paul. When paul does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://www.mysql.com/doc/I/n/Installing_source_tree.html
ChangeSet
1.2639 05/05/08 22:00:24 paul@stripped +1 -0
manual.texi:
Document bugfix. (Bug #9864)
Document bugfix. (Bug #9777)
Document bugfix. (Bug #9096)
Document bugfix. (Bug #8998)
Document bugfix. (Bug #8928)
Document bugfix. (Bug #8497)
Docs/manual.texi
1.2827 05/05/08 21:58:07 paul@stripped +6 -0
Document bugfix. (Bug #9864)
Docs/manual.texi
1.2826 05/05/08 21:52:30 paul@stripped +4 -4
Document bugfix. (Bug #9777)
Docs/manual.texi
1.2825 05/05/08 21:46:41 paul@stripped +8 -0
Document bugfix. (Bug #9096)
Docs/manual.texi
1.2824 05/05/08 21:41:10 paul@stripped +8 -2
Document bugfix. (Bug #8998)
Docs/manual.texi
1.2823 05/05/08 21:34:31 paul@stripped +23 -4
Document bugfix. (Bug #8928)
Docs/manual.texi
1.2822 05/05/08 21:26:24 paul@stripped +8 -0
Document bugfix. (Bug #8497)
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: paul
# Host: frost.snake.net
# Root: /Volumes/frost2/MySQL/bk/mysqldoc
--- 1.2821/Docs/manual.texi 2005-05-08 19:43:02 -05:00
+++ 1.2827/Docs/manual.texi 2005-05-08 21:58:07 -05:00
@@ -82110,6 +82110,7 @@
@item @code{DEFAULT_CHARACTER_SET_CATALOG} @tab @tab omit
@item @code{DEFAULT_CHARACTER_SET_SCHEMA} @tab @tab omit
@item @code{DEFAULT_CHARACTER_SET_NAME} @tab @tab
+@item @code{DEFAULT_COLLATION_NAME} @tab @tab
@item @code{SQL_PATH} @tab @tab @code{NULL}
@end multitable
@@ -82121,6 +82122,9 @@
For @code{SQL_PATH}, we might eventually support
something in MySQL 5.x. For now, it's always @code{NULL}.
+@item
+@code{DEFAULT_COLLATION_NAME} was added in MySQL 5.0.6.
+
@end itemize
The following statements are equivalent:
@@ -99832,13 +99836,15 @@
Functionality added or changed:
@itemize @bullet
@item
+The @code{INFORMATION_SCHEMA.SCHEMATA} table now has a
+@code{DEFAULT_COLLATION_NAME} column. (Bug #8998)
+@item
@code{InnoDB}: If @code{innobase_locks_unsafe_for_binlog} option
-set and isolation level of the transaction is not set to serializable
+s set and isolation level of the transaction is not set to serializable
then @code{InnoDB} uses a consistent read for select in
clauses like @code{INSERT INTO... SELECT} and @code{UPDATE ...(SELECT)}
without @code{FOR UPDATE} or @code{IN SHARE MODE}. Thus no
locks are set to rows read from selected table.
-
@item
Updated version of @code{libedit} to 2.9. (Bug #2596)
@end itemize
@@ -99846,6 +99852,14 @@
Bugs fixed:
@itemize @bullet
@item
+Corrected some failures of prepared statements for SQL (@code{PREPARE} plus
+@code{EXECUTE}) to return all rows for some @code{SELECT} statements.
+(Bug #9096, Bug #9777)
+@item
+Remove extra slashes in @code{--tmpdir} value (for example, convert
+@file{/var//tmp} to @file{/var/tmp}, because they caused various errors.
+(Bug #8497)
+@item
Added @code{Create_routine_priv}, @code{Alter_routine_priv}, and
@code{Execute_priv} privileges to the @code{mysql.host} privilege table.
(They had been added to @code{mysql.db} in MySQL 5.0.3 but not to the
@@ -101580,6 +101594,14 @@
@code{--user=@var{non_existent_user}}, it would run using the privileges of the
account it was invoked from, even if that was @code{root}. (Bug #9833)
@item
+Corrected some failures of prepared statements for SQL (@code{PREPARE} plus
+@code{EXECUTE}) to return all rows for some @code{SELECT} statements.
+(Bug #9096, Bug #9777)
+@item
+Remove extra slashes in @code{--tmpdir} value (for example, convert
+@file{/var//tmp} to @file{/var/tmp}, because they caused various errors.
+(Bug #8497)
+@item
Fixed a sort order problem with the @code{latin2_croatian_ci} collation.
(Bug #6505)
@item
@@ -104883,6 +104905,12 @@
Bugs fixed:
@itemize @bullet
@item
+In the @code{mysql_real_escape_string()} C API function, when a multi-byte
+character is encountered that is illegal in the current character set,
+escape only the first byte, not each byte. This avoids creating a valid
+character from an invalid one. (Bug #9864; this is a backport of Bug #8378
+from MySQL 4.1.11 to 4.0.25)
+@item
Fixed a deadlock resulting from use of @code{FLUSH TABLES WITH READ LOCK}
while an @code{INSERT DELAYED} statement is in progress. (Bug #7823)
@item
@@ -116980,6 +117008,7 @@
@appendixsec @code{MySQL Cluster} Change History
@menu
+* MySQL Cluster news-4.1.12:: MySQL Cluster-4.1.12
* MySQL Cluster news-4.1.11:: MySQL Cluster-4.1.11 (01 Apr 2005)
* MySQL Cluster news-4.1.10:: MySQL Cluster-4.1.10 (12 Feb 2005)
* MySQL Cluster news-4.1.9:: MySQL Cluster-4.1.9 (13 Jan 2005)
@@ -117024,9 +117053,28 @@
@c Bug #6762: ALTER TABLE gives weird results and error message
@c Bug #5660: Send of uninitialized data
-@node MySQL Cluster news-4.1.11, MySQL Cluster news-4.1.10, MySQL Cluster change history, MySQL Cluster change history
+
+@node MySQL Cluster news-4.1.12, MySQL Cluster news-4.1.11, MySQL Cluster change history, MySQL Cluster change history
+@appendixsubsec MySQL Cluster-4.1.12
+
+Functionality added or changed:
+@itemize @bullet
+@end itemize
+
+Bugs fixed:
+@itemize @bullet
+@item
+Creating a table did not work for a cluster with 6 nodes. (Bug #8928)
+Databases with 1, 2, 4, 8, ... (2^@var{n} nodes) did not have the problem.
+After a rolling upgrade, restart each node manually by restarting it with the
+@code{--initial} option. Otherwise, use dump and restore after an upgrade.
+@end itemize
+
+
+@node MySQL Cluster news-4.1.11, MySQL Cluster news-4.1.10, MySQL Cluster news-4.1.12, MySQL Cluster change history
@appendixsubsec MySQL Cluster-4.1.11 (01 Apr 2005)
+@c No items for "Functionality added or changed"
Functionality added or changed:
@itemize @bullet
@end itemize
@@ -117045,12 +117093,11 @@
cluster shared memory and mysqld signal usage clash
@end itemize
+
@node MySQL Cluster news-4.1.10, MySQL Cluster news-4.1.9, MySQL Cluster news-4.1.11, MySQL Cluster change history
@appendixsubsec MySQL Cluster-4.1.10 (12 Feb 2005)
-Functionality added or changed:
-@itemize @bullet
-@end itemize
+@c No items for "Functionality added or changed"
Bugs fixed:
@itemize @bullet
| Thread |
|---|
| • bk commit - mysqldoc@docsrva tree (paul:1.2639) | paul | 9 May |