From: Date: August 13 2008 10:47am Subject: bzr commit into mysql-5.1-bugteam branch (mattiasj:2695) Bug#37402 List-Archive: http://lists.mysql.com/commits/51488 X-Bug: 37402 Message-Id: <20080813084749.59911EE6F76@witty.localhost> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit #At file:///Users/mattiasj/clones/bzrroot/topush3-51-bugteam/ 2695 Mattias Jonsson 2008-08-13 Bug#37402: Mysql cant read partitioned table with capital letter in the name Post push fix (compiler warning) modified: sql/ha_partition.cc per-file messages: sql/ha_partition.cc Bug#37402: Mysql cant read partitioned table with capital letter in the name fix to prevent a compiler warning. === modified file 'sql/ha_partition.cc' --- a/sql/ha_partition.cc 2008-08-12 10:26:23 +0000 +++ b/sql/ha_partition.cc 2008-08-13 08:47:24 +0000 @@ -1798,7 +1798,8 @@ uint ha_partition::del_ren_cre_table(con char from_buff[FN_REFLEN], to_buff[FN_REFLEN], from_lc_buff[FN_REFLEN], to_lc_buff[FN_REFLEN]; char *name_buffer_ptr; - const char *from_path, *to_path; + const char *from_path; + const char *to_path= NULL; uint i; handler **file, **abort_file; DBUG_ENTER("del_ren_cre_table()");