List:Commits« Previous MessageNext Message »
From:jonas Date:January 16 2007 6:58pm
Subject:bk commit into 5.1 tree (jonas:1.2367) BUG#25636
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of jonas. When jonas 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-01-16 18:58:43+01:00, jonas@stripped +1 -0
  ndb - bug#25636
    additional fix after autotest
    dont send start_fragreq to temporary tables such as ordered indexes...

  storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp@stripped, 2007-01-16 18:58:42+01:00,
jonas@stripped +3 -1
    dont send START_FRAGREQ to temporary tables (such as ordered indexes)

# 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:	jonas
# Host:	perch.ndb.mysql.com
# Root:	/home/jonas/src/51-work

--- 1.97/storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp	2007-01-16 18:58:48 +01:00
+++ 1.98/storage/ndb/src/kernel/blocks/dbdih/DbdihMain.cpp	2007-01-16 18:58:48 +01:00
@@ -2832,7 +2832,9 @@
       return;
     }//if
     ptrAss(tabPtr, tabRecord);
-    if (tabPtr.p->tabStatus != TabRecord::TS_ACTIVE){
+    if (tabPtr.p->tabStatus != TabRecord::TS_ACTIVE ||
+	tabPtr.p->tabStorage != TabRecord::ST_NORMAL)
+    {
       jam();
       takeOverPtr.p->toCurrentFragid = 0;
       takeOverPtr.p->toCurrentTabref++;
Thread
bk commit into 5.1 tree (jonas:1.2367) BUG#25636jonas16 Jan