From: Date: January 12 2007 12:21pm Subject: bk commit into 4.1 tree (lars:1.2592) List-Archive: http://lists.mysql.com/commits/18019 Message-Id: <200701121121.l0CBLmPI014228@dl145j.mysql.com> Below is the list of changes that have just been committed into a local 4.1 repository of lthalmann. When lthalmann 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-01-12 12:21:44+01:00, lars@stripped +1 -0 Merge mysql.com:/nfsdisk1/lars/bkroot/mysql-4.1-rpl into mysql.com:/nfsdisk1/lars/MERGE/mysql-4.1-merge MERGE: 1.2578.1.3 sql/sql_parse.cc@stripped, 2007-01-12 12:21:39+01:00, lars@stripped +0 -0 Auto merged MERGE: 1.489.1.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: lars # Host: dl145j.mysql.com # Root: /nfsdisk1/lars/MERGE/mysql-4.1-merge/RESYNC --- 1.490/sql/sql_parse.cc 2007-01-12 12:21:48 +01:00 +++ 1.491/sql/sql_parse.cc 2007-01-12 12:21:48 +01:00 @@ -5482,6 +5482,7 @@ int mysql_create_index(THD *thd, TABLE_L bzero((char*) &create_info,sizeof(create_info)); create_info.db_type=DB_TYPE_DEFAULT; create_info.default_table_charset= thd->variables.collation_database; + create_info.row_type= ROW_TYPE_NOT_USED; DBUG_RETURN(mysql_alter_table(thd,table_list->db,table_list->real_name, &create_info, table_list, fields, keys, 0, (ORDER*)0, @@ -5498,6 +5499,7 @@ int mysql_drop_index(THD *thd, TABLE_LIS bzero((char*) &create_info,sizeof(create_info)); create_info.db_type=DB_TYPE_DEFAULT; create_info.default_table_charset= thd->variables.collation_database; + create_info.row_type= ROW_TYPE_NOT_USED; alter_info->clear(); alter_info->flags= ALTER_DROP_INDEX; alter_info->is_simple= 0;