List:Commits« Previous MessageNext Message »
From:U-ROWVWADEjas Date:April 6 2007 4:01pm
Subject:bk commit into 5.1-falcon tree (jas:1.2559)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1-falcon repository of . When  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-04-06 10:01:09-04:00, jas@rowvwade. +1 -0
  Add some casts to fix fatal compiler errors to sql/log_event_cc.

  sql/log_event.cc@stripped, 2007-04-06 10:01:01-04:00, jas@rowvwade. +5 -5
    Add some casts to fix fatal compiler errors to sql/log_event_cc.

# 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:	jas
# Host:	rowvwade.
# Root:	D:/MySQL/mysql-5.1-falcon

--- 1.267/sql/log_event.cc	2007-04-06 10:01:33 -04:00
+++ 1.268/sql/log_event.cc	2007-04-06 10:01:33 -04:00
@@ -6382,7 +6382,7 @@
                                 reinterpret_cast<byte*>(m_cols_ai.bitmap),
                                 no_bytes_in_map(&m_cols_ai));
   }
-  DBUG_DUMP("rows", m_rows_buf, data_size);
+  DBUG_DUMP("rows", (const char*) m_rows_buf, data_size);
   res= res || my_b_safe_write(file, m_rows_buf, (uint) data_size);
 
   return res;
@@ -7099,7 +7099,7 @@
   auto_afree_ptr<char> key(NULL);
 
 #ifndef DBUG_OFF
-  DBUG_DUMP("record[0]", table->record[0], table->s->reclength);
+  DBUG_DUMP("record[0]", (const char*) table->record[0], table->s->reclength);
   DBUG_PRINT_BITSET("debug", "write_set = %s", table->write_set);
   DBUG_PRINT_BITSET("debug", "read_set = %s", table->read_set);
 #endif
@@ -7341,7 +7341,7 @@
 
   DBUG_ASSERT(table->in_use != NULL);
 
-  DBUG_DUMP("record[0]", table->record[0], table->s->reclength);
+  DBUG_DUMP("record[0]", (const char*)table->record[0], table->s->reclength);
 
   if ((table->file->ha_table_flags() & HA_PRIMARY_KEY_REQUIRED_FOR_POSITION)
&&
       table->s->primary_key < MAX_KEY)
@@ -7485,8 +7485,8 @@
     {
       error= table->file->rnd_next(table->record[1]);
 
-      DBUG_DUMP("record[0]", table->record[0], table->s->reclength);
-      DBUG_DUMP("record[1]", table->record[1], table->s->reclength);
+      DBUG_DUMP("record[0]", (const char*)table->record[0],
table->s->reclength);
+      DBUG_DUMP("record[1]", (const char*) table->record[1],
table->s->reclength);
 
       switch (error)
       {
Thread
bk commit into 5.1-falcon tree (jas:1.2559)U-ROWVWADEjas6 Apr