List:Commits« Previous MessageNext Message »
From:tomas Date:June 6 2007 4:40pm
Subject:bk commit into 5.1 tree (tomas:1.2524)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of tomas. When tomas 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-06 18:40:19+02:00, tomas@stripped +1 -0
  correct compile error on some platforms

  sql/ha_ndbcluster_tables.h@stripped, 2007-06-06 18:40:16+02:00, tomas@stripped +3 -3
    correct compile error on some platforms

# 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:	tomas
# Host:	whalegate.ndb.mysql.com
# Root:	/home/tomas/mysql-5.1-wl3867

--- 1.7/sql/ha_ndbcluster_tables.h	2007-06-06 15:59:04 +02:00
+++ 1.8/sql/ha_ndbcluster_tables.h	2007-06-06 18:40:16 +02:00
@@ -29,7 +29,7 @@
   ,NBT_NO_LOGGING               = 1
   ,NBT_FULL                     = 2
   ,NBT_UPDATED                  = 3
-  ,NBT_USE_UPDATE               = 4             // bit 0x4 indicates USE_UPDATE
-  ,NBT_FULL_USE_UPDATE          = 4+NBT_FULL    // bit 0x4 indicates USE_UPDATE
-  ,NBT_UPDATED_USE_UPDATE       = 4+NBT_UPDATED // bit 0x4 indicates USE_UPDATE
+  ,NBT_USE_UPDATE               = 4 /* bit 0x4 indicates USE_UPDATE */
+  ,NBT_FULL_USE_UPDATE          = NBT_USE_UPDATE | NBT_FULL
+  ,NBT_UPDATED_USE_UPDATE       = NBT_USE_UPDATE | NBT_UPDATED
 };
Thread
bk commit into 5.1 tree (tomas:1.2524)tomas7 Jun