List:Internals« Previous MessageNext Message »
From:Martin Skold Date:April 29 2005 11:37am
Subject:bk commit into 4.1 tree (mskold:1.2214)
View as plain text  
Below is the list of changes that have just been committed into a local
4.1 repository of marty. When marty 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
  1.2214 05/04/29 11:37:47 mskold@stripped +1 -0
  Fix for avoiding gettin Invalid schema object version when doing local changes, fixed
found bug

  sql/ha_ndbcluster.cc
    1.151 05/04/29 11:37:15 mskold@stripped +1 -1
    Fix for avoiding gettin Invalid schema object version when doing local changes, fixed
found 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:	mskold
# Host:	blowfish.ndb.mysql.com
# Root:	/usr/local/home/marty/MySQL/mysql-4.1

--- 1.150/sql/ha_ndbcluster.cc	Thu Apr 28 10:46:09 2005
+++ 1.151/sql/ha_ndbcluster.cc	Fri Apr 29 11:37:15 2005
@@ -3266,7 +3266,7 @@
       if (tab->getObjectStatus() == NdbDictionary::Object::Invalid)
       {
         invalidate_dictionary_cache(FALSE);
-        if (!(tab= dict->getTable(m_tabname)))
+        if (!(tab= dict->getTable(m_tabname, &tab_info)))
           ERR_RETURN(dict->getNdbError());
         DBUG_PRINT("info", ("Table schema version: %d", 
                             tab->getObjectVersion()));
Thread
bk commit into 4.1 tree (mskold:1.2214)Martin Skold29 Apr