List:Commits« Previous MessageNext Message »
From:msvensson Date:August 23 2006 1:42pm
Subject:bk commit into 5.1 tree (msvensson:1.2294)
View as plain text  
Below is the list of changes that have just been committed into a local
5.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-23 15:41:52+02:00, msvensson@shellback.(none) +1 -0
  Fix VC 2005 compile problem

  sql/handler.cc@stripped, 2006-08-23 15:41:48+02:00, msvensson@shellback.(none) +2 -2
    Cast to "byte*" on both sides of equal sign
    Fix spelling error

# 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:	shellback.(none)
# Root:	/home/msvensson/mysql/mysql-5.1-new-maint

--- 1.255/sql/handler.cc	2006-08-23 15:42:01 +02:00
+++ 1.256/sql/handler.cc	2006-08-23 15:42:01 +02:00
@@ -3513,10 +3513,10 @@
 int handler::ha_reset()
 {
   DBUG_ENTER("ha_reset");
-  /* Check that we have called all proper delallocation functions */
+  /* Check that we have called all proper deallocation functions */
   DBUG_ASSERT((byte*) table->def_read_set.bitmap +
               table->s->column_bitmap_size ==
-              (char*) table->def_write_set.bitmap);
+              (byte*) table->def_write_set.bitmap);
   DBUG_ASSERT(bitmap_is_set_all(&table->s->all_set));
   DBUG_ASSERT(table->key_read == 0);
   /* ensure that ha_index_end / ha_rnd_end has been called */
Thread
bk commit into 5.1 tree (msvensson:1.2294)msvensson23 Aug