List:Commits« Previous MessageNext Message »
From:msvensson Date:August 3 2006 10:16am
Subject:bk commit into 4.1 tree (msvensson:1.2537) BUG#21419
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 repository of msvensson. When msvensson 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@stripped, 2006-08-03 12:16:24+02:00, msvensson@neptunus.(none) +1 -0
  Bug#21419 test case lowercase_fs_off fails on Windows
   - Backport patch from 5.0

  sql/mysqld.cc@stripped, 2006-08-03 12:16:20+02:00, msvensson@neptunus.(none) +5 -0
    Add else case to set "lower_case_file_system" also when lower_case_table_names are 1

# 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:	msvensson
# Host:	neptunus.(none)
# Root:	/home/msvensson/mysql/mysql-4.1

--- 1.614/sql/mysqld.cc	2006-08-03 12:16:32 +02:00
+++ 1.615/sql/mysqld.cc	2006-08-03 12:16:32 +02:00
@@ -2646,6 +2646,11 @@ You should consider changing lower_case_
 			mysql_real_data_home);
     lower_case_table_names= 0;
   }
+  else
+  {
+    lower_case_file_system=
+      (test_if_case_insensitive(mysql_real_data_home) == 1);
+  }
 
   /* Reset table_alias_charset, now that lower_case_table_names is set. */
   table_alias_charset= (lower_case_table_names ?
Thread
bk commit into 4.1 tree (msvensson:1.2537) BUG#21419msvensson3 Aug