From: Date: June 1 2007 4:44pm Subject: bk commit into 5.1 tree (holyfoot:1.2535) BUG#28477 List-Archive: http://lists.mysql.com/commits/27940 X-Bug: 28477 Message-Id: <20070601144415.485CC2C380A5@hfmain.localdomain> Below is the list of changes that have just been committed into a local 5.1 repository of hf. When hf 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, 2007-06-01 19:44:09+05:00, holyfoot@stripped +3 -0 Bug #28477 innodb assertion and crash during alter table to add/drop partition. The bug was repeated on MyISAM tables, so isn't InnoDB specific. Reason of the bug is that partition-related members of TABLE_SHARE wasn't properly updated after ALTER command. So if other thread doesn't reread frm file, and just uses cached SHARE, it uses wrong data sql/sql_table.cc@stripped, 2007-06-01 19:44:08+05:00, holyfoot@stripped +11 -1 Bug #28477 innodb assertion and crash during alter table to add/drop partition. keep share members updated after table modification sql/table.cc@stripped, 2007-06-01 19:44:08+05:00, holyfoot@stripped +2 -1 Bug #28477 innodb assertion and crash during alter table to add/drop partition. share->partition_info_buffer_size initialization added sql/table.h@stripped, 2007-06-01 19:44:08+05:00, holyfoot@stripped +1 -0 Bug #28477 innodb assertion and crash during alter table to add/drop partition. partition_info_buffer_size declared in st_table_share to store the size of the memory available for partition_info # 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: holyfoot # Host: hfmain.(none) # Root: /home/hf/work/28477/my51-28477 --- 1.418/sql/sql_table.cc 2007-06-01 19:44:15 +05:00 +++ 1.419/sql/sql_table.cc 2007-06-01 19:44:15 +05:00 @@ -1329,6 +1329,7 @@ bool mysql_write_frm(ALTER_PARTITION_PAR if (part_info) { + TABLE_SHARE *share= lpt->table->s; if (!(part_syntax_buf= generate_partition_syntax(part_info, &syntax_len, TRUE, TRUE))) @@ -1336,7 +1337,16 @@ bool mysql_write_frm(ALTER_PARTITION_PAR DBUG_RETURN(TRUE); } part_info->part_info_string= part_syntax_buf; - part_info->part_info_len= syntax_len; + share->partition_info_len= part_info->part_info_len= syntax_len; + if (share->partition_info_buffer_size < syntax_len + 1) + { + share->partition_info_buffer_size= syntax_len+1; + if (!(share->partition_info= + alloc_root(&share->mem_root, syntax_len+1))) + DBUG_RETURN(TRUE); + + } + memcpy((char*) share->partition_info, part_syntax_buf, syntax_len + 1); } } #endif --- 1.288/sql/table.cc 2007-06-01 19:44:15 +05:00 +++ 1.289/sql/table.cc 2007-06-01 19:44:15 +05:00 @@ -720,7 +720,8 @@ static int open_binary_frm(THD *thd, TAB { uint32 partition_info_len = uint4korr(next_chunk); #ifdef WITH_PARTITION_STORAGE_ENGINE - if ((share->partition_info_len= partition_info_len)) + if ((share->partition_info_buffer_size= + share->partition_info_len= partition_info_len)) { if (!(share->partition_info= memdup_root(&share->mem_root, next_chunk + 4, --- 1.171/sql/table.h 2007-06-01 19:44:15 +05:00 +++ 1.172/sql/table.h 2007-06-01 19:44:15 +05:00 @@ -243,6 +243,7 @@ typedef struct st_table_share bool auto_partitioned; const char *partition_info; uint partition_info_len; + uint partition_info_buffer_size; const char *part_state; uint part_state_len; handlerton *default_part_db_type;