List:Commits« Previous MessageNext Message »
From:pekka Date:August 31 2006 10:54am
Subject:bk commit into 5.1 tree (pekka:1.2301) BUG#21690
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of pekka. When pekka 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-31 10:54:34+02:00, pekka@stripped +1 -0
  ndb - bug#21690 workaround-fix, cleanup in separate patch

  storage/ndb/src/ndbapi/NdbBlob.cpp@stripped, 2006-08-31 10:52:50+02:00,
pekka@stripped +6 -0
    currently distr keys must be set at end due to bug

# 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:	pekka
# Host:	orca.ndb.mysql.com
# Root:	/export/home/space/pekka/ndb/version/my51-bug21690

--- 1.47/storage/ndb/src/ndbapi/NdbBlob.cpp	2006-08-31 10:54:53 +02:00
+++ 1.48/storage/ndb/src/ndbapi/NdbBlob.cpp	2006-08-31 10:54:53 +02:00
@@ -164,6 +164,12 @@
     bc.setStorageType(c->getStorageType());
     bt.addColumn(bc);
   }
+  // temp fix for bug#21690 - distr key set wrong
+  { unsigned x;
+    bt.getColumn(x=0)->setDistributionKey(true);
+    bt.getColumn(x=1)->setDistributionKey(true);
+    bt.getColumn(x=2)->setDistributionKey(false);
+  }
   DBUG_VOID_RETURN;
 }
 
Thread
bk commit into 5.1 tree (pekka:1.2301) BUG#21690pekka31 Aug