summaryrefslogtreecommitdiff
path: root/storage/ndb
diff options
context:
space:
mode:
authorunknown <mskold/marty@mysql.com/linux.site>2006-11-27 11:49:43 +0100
committerunknown <mskold/marty@mysql.com/linux.site>2006-11-27 11:49:43 +0100
commite545d107a22d256ad5f9443d66afb35a20355c95 (patch)
treefb310ed22746f4b574305b5dd47090c09ebddba1 /storage/ndb
parentb846af899d57aed220ac552e0218520a40b9bd46 (diff)
downloadmariadb-git-e545d107a22d256ad5f9443d66afb35a20355c95.tar.gz
bug#24470 MySQL Servers crashes during creating new tables with blob column: fix of error handling at resource shortage
Diffstat (limited to 'storage/ndb')
-rw-r--r--storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp b/storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp
index 42ef7bbbaee..d626be1bd72 100644
--- a/storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp
+++ b/storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp
@@ -2299,7 +2299,7 @@ NdbDictionaryImpl::createTable(NdbTableImpl &t)
// 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);