List:Commits« Previous MessageNext Message »
From:Alex Ivanov Notebook Date:April 26 2006 5:50am
Subject:bk commit into 5.0 tree (aivanov:1.2100) BUG#19217
View as plain text  
Below is the list of changes that have just been committed into a local
5.0 repository of alexi. When alexi 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.2100 06/04/26 07:50:29 aivanov@stripped +1 -0
  Applied innodb-5.0-ss492 snapshot.
   Fixed BUG#19217 "dict_load_indexes() may read the delete-mark incorrectly".

  innobase/dict/dict0load.c
    1.43 06/04/26 07:50:25 aivanov@stripped +1 -1
    Applied innodb-5.0-ss492 snapshot.
     dict_load_indexes(): pass comp=0 to rec_get_deleted_flag(), because
     SYS_INDEXES always is in ROW_FORMAT=REDUNDANT (Bug #19217).

# 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:	aivanov
# Host:	mysqld.localdomain
# Root:	/home/alexi/innodb/mysql-5.0-ss492-work

--- 1.42/innobase/dict/dict0load.c	2006-04-21 01:07:32 +04:00
+++ 1.43/innobase/dict/dict0load.c	2006-04-26 07:50:25 +04:00
@@ -617,7 +617,7 @@
 			break;
 		}
 
-		if (rec_get_deleted_flag(rec, table->comp)) {
+		if (rec_get_deleted_flag(rec, 0)) {
 			dict_load_report_deleted_index(table->name,
 				ULINT_UNDEFINED);
 
Thread
bk commit into 5.0 tree (aivanov:1.2100) BUG#19217Alex Ivanov Notebook25 Apr