List:Commits« Previous MessageNext Message »
From:Martin Skold Date:November 27 2006 11:49am
Subject:bk commit into 5.1 tree (mskold:1.2325) BUG#24470
View as plain text  
Below is the list of changes that have just been committed into a local
5.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@stripped, 2006-11-27 11:49:43+01:00, mskold@stripped +1 -0
  bug#24470  MySQL Servers crashes during creating new tables with blob column: fix of
error handling at resource shortage

  storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp@stripped, 2006-11-27 11:49:20+01:00,
mskold@stripped +1 -1
    bug#24470  MySQL Servers crashes during creating new tables with blob column: fix of
error handling at resource shortage

# 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:	linux.site
# Root:	/windows/Linux_space/MySQL/mysql-5.1-new-ndb

--- 1.152/storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp	2006-11-27 11:49:54 +01:00
+++ 1.153/storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp	2006-11-27 11:49:54 +01:00
@@ -2299,7 +2299,7 @@ NdbDictionaryImpl::createTable(NdbTableI
   // blob tables - use "t2" to get values set by kernel
   if (t2->m_noOfBlobs != 0 && createBlobTables(*t2) != 0) {
     int save_code = m_error.code;
-    (void)dropTable(*t2);
+    (void)dropTableGlobal(*t2);
     m_error.code = save_code;
     delete t2;
     DBUG_RETURN(-1);
Thread
bk commit into 5.1 tree (mskold:1.2325) BUG#24470Martin Skold27 Nov