List:Internals« Previous MessageNext Message »
From:paul Date:May 9 2005 12:44am
Subject:bk commit - mysqldoc@docsrva tree (paul:1.2638)
View as plain text  
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.2638 05/05/08 19:44:12 paul@stripped +2 -0
  manual.texi:
    Document bugfix. (Bug #8166)
    Document bugfix. (Bug #6505)
    Document bugfix. (Bug #5843)
    Document bugfix. (Bug #4082)
    Document bugfix. (Bug #2173)
    Document bugfix. (Bug #10261)
    Document bugfix. (Bug #10245)
    Document bugfix. (Bug #10287)
    Document bugfix. (Bug #10404)
  shell-vars:
    Rename: make.d/command-vars -> make.d/shell-vars

  Docs/manual.texi
    1.2821 05/05/08 19:43:02 paul@stripped +5 -0
    Document bugfix. (Bug #8166)

  Docs/manual.texi
    1.2820 05/05/08 19:36:34 paul@stripped +6 -0
    Document bugfix. (Bug #6505)

  Docs/manual.texi
    1.2819 05/05/08 19:29:52 paul@stripped +3 -0
    Document bugfix. (Bug #5843)

  Docs/manual.texi
    1.2818 05/05/08 19:23:19 paul@stripped +5 -0
    Document bugfix. (Bug #4082)

  Docs/manual.texi
    1.2817 05/05/08 19:09:52 paul@stripped +6 -2
    Document bugfix. (Bug #2173)

  Docs/manual.texi
    1.2816 05/05/08 18:55:57 paul@stripped +3 -0
    Document bugfix. (Bug #10261)

  Docs/manual.texi
    1.2815 05/05/08 18:55:36 paul@stripped +6 -0
    Document bugfix. (Bug #10245)

  Docs/manual.texi
    1.2814 05/05/08 18:43:40 paul@stripped +3 -0
    Document bugfix. (Bug #10287)

  Docs/manual.texi
    1.2813 05/05/08 18:38:13 paul@stripped +2 -0
    Document bugfix. (Bug #10404)

  make.d/shell-vars
    1.2 05/05/06 21:52:26 paul@stripped +0 -0
    Rename: make.d/command-vars -> make.d/shell-vars

# 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.2812/Docs/manual.texi	2005-05-06 17:11:20 -05:00
+++ 1.2821/Docs/manual.texi	2005-05-08 19:43:02 -05:00
@@ -45205,6 +45205,7 @@
 @item @code{cp1250} (Windows Central European) collations:
 @itemize
 @item @code{cp1250_bin}
+@item @code{cp1250_croatian_ci}
 @item @code{cp1250_czech_cs}
 @item @code{cp1250_general_ci} (default)
 @end itemize
@@ -99845,6 +99846,22 @@
 Bugs fixed:
 @itemize @bullet
 @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
+@code{host} table.)  (Bug #8166)
+@item
+Fixed @command{configure} to properly recognize whether NTPL is available on
+Linux.  (Bug #2173)
+@item
+Incomplete results were returned from @code{INFORMATION_SCHEMA.COLUMNS}
+for @code{INFORMATION_SCHEMA} tables for non-@code{root} users.  (Bug #10261)
+@item
+Fixed a portability problem in compiling @file{mysql.cc} with @command{VC++}
+on Windows.  (Bug #10245)
+@item
+@code{SELECT 0/0} returned @code{0} rather than @code{NULL}.  (Bug #10404)
+@item
 @code{MAX()} for an @code{INT UNSIGNED} (unsigned 4-byte integer) column could
 return negative values if the column contained values larger than 2^31.
 (Bug #9298)
@@ -101526,6 +101543,8 @@
 Functionality added or changed:
 @itemize @bullet
 @item
+Added @code{cp1250_croatian_ci} collation.  (Bug #6505)
+@item
 Updated version of @code{libedit} to 2.9.  (Bug #2596)
 @item
 @code{InnoDB}: When @code{FOREIGN_KEY_CHECKS=0}, @code{ALTER TABLE} and
@@ -101545,14 +101564,12 @@
 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
 Previously in MySQL 4.1, an @code{Illegal mix of collations} error occurred
 when mixing strings from same character set when one had a non-binary
 collation and the other a binary collation.  Now the binary collation takes
 precedence, so that both strings are treated as having the binary collation.
 This restores compatibility with MySQL 4.0 behavior.
-
 @end itemize
 
 Bugs fixed:
@@ -101562,6 +101579,26 @@
 @strong{Security fix:} If @command{mysqld} was started with
 @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
+Fixed a sort order problem with the @code{latin2_croatian_ci} collation.
+(Bug #6505)
+@item
+@command{mysqld} was not checking whether the PID file was successfully
+created.  (Bug #5843)
+@item
+With @code{DISTINCT CONCAT(@var{col},...)} returned incorrect results when
+the arguments to @code{CONCAT()} were columns with an integer data type
+declared with a display width narrower than the values in the column.
+(For example, if an @code{INT(1)} column contain @code{1111}.)  (Bug #4082)
+@item
+Fixed @command{configure} to properly recognize whether NTPL is available on
+Linux.  (Bug #2173)
+@item
+Fixed a portability problem in compiling @file{mysql.cc} with @command{VC++}
+on Windows.  (Bug #10245)
+@item
+The @code{--delimiter} option for the @command{nds_select} program was
+non-functional.  (Bug #10287)
 @item
 @code{MAX()} for an @code{INT UNSIGNED} (unsigned 4-byte integer) column could
 return negative values if the column contained values larger than 2^31.
Thread
bk commit - mysqldoc@docsrva tree (paul:1.2638)paul9 May