mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 21:42:35 +01:00
bug#24470 MySQL Servers crashes during creating new tables with blob column: fix of error handling at resource shortage
This commit is contained in:
parent
a4ae99533c
commit
9f572b7d4b
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue