diff options
author | unknown <mskold/marty@mysql.com/linux.site> | 2006-11-27 11:49:43 +0100 |
---|---|---|
committer | unknown <mskold/marty@mysql.com/linux.site> | 2006-11-27 11:49:43 +0100 |
commit | e545d107a22d256ad5f9443d66afb35a20355c95 (patch) | |
tree | fb310ed22746f4b574305b5dd47090c09ebddba1 /storage/ndb | |
parent | b846af899d57aed220ac552e0218520a40b9bd46 (diff) | |
download | mariadb-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.cpp | 2 |
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); |