List:Commits« Previous MessageNext Message »
From:eugene Date:June 15 2006 12:57pm
Subject:bk commit into 4.1 tree (evgen:1.2489)
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 repository of evgen. When evgen 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://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet
  1.2489 06/06/15 14:57:53 evgen@stripped +1 -0
  Merge moonbone.local:/work/15351-bug-4.1-mysql
  into moonbone.local:/home/evgen/bk-trees/mysql-4.1-opt

  sql/item_strfunc.cc
    1.243 06/06/15 14:57:52 evgen@stripped +0 -0
    Auto merged

# 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:	evgen
# Host:	moonbone.local
# Root:	/home/evgen/bk-trees/mysql-4.1-opt/RESYNC

--- 1.242/sql/item_strfunc.cc	2006-05-26 01:23:02 +04:00
+++ 1.243/sql/item_strfunc.cc	2006-06-15 14:57:52 +04:00
@@ -118,7 +118,15 @@
 
 void Item_func_md5::fix_length_and_dec()
 {
-   max_length=32;
+  max_length=32;
+  /*
+    The MD5() function treats its parameter as being a case sensitive. Thus
+    we set binary collation on it so different instances of MD5() will be
+    compared properly.
+  */
+  args[0]->collation.set(
+      get_charset_by_csname(args[0]->collation.collation->csname,
+                            MY_CS_BINSORT,MYF(0)), DERIVATION_COERCIBLE);
 }
 
 
@@ -159,7 +167,15 @@
 
 void Item_func_sha::fix_length_and_dec()
 {
-   max_length=SHA1_HASH_SIZE*2; // size of hex representation of hash
+  max_length=SHA1_HASH_SIZE*2; // size of hex representation of hash
+  /*
+    The SHA() function treats its parameter as being a case sensitive. Thus
+    we set binary collation on it so different instances of MD5() will be
+    compared properly.
+  */
+  args[0]->collation.set(
+      get_charset_by_csname(args[0]->collation.collation->csname,
+                            MY_CS_BINSORT,MYF(0)), DERIVATION_COERCIBLE);
 }
 
 
Thread
bk commit into 4.1 tree (evgen:1.2489)eugene15 Jun