diff --git a/mysql-test/t/disabled.def b/mysql-test/t/disabled.def index 491c1ba2fa6..b8646f61b87 100644 --- a/mysql-test/t/disabled.def +++ b/mysql-test/t/disabled.def @@ -33,3 +33,10 @@ rpl_until : Unstable test case, bug#15886 sp-goto : GOTO is currently is disabled - will be fixed in the future subselect : Bug#15706 (ps mode) [PATCH PENDING] rpl_ndb_log : result not deterministic +sp-code : Bug #17360 +binlog_row_mix_innodb_myisam : Bug #17386 +binlog_row_insert_select : Bug #17385 +rpl_row_basic_2myisam : Bug #17385 +rpl_row_basic_3innodb : Bug #17385 +rpl_row_create_table : Bug #17385 +mysqldump : Bug #17383 Bug #17384 diff --git a/storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp b/storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp index 17a637c9567..46834b519bf 100644 --- a/storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp +++ b/storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp @@ -3468,7 +3468,7 @@ NdbDictionaryImpl::getEvent(const char * eventName) delete ev; DBUG_RETURN(NULL); } - if (info->m_table_impl->m_status == NdbDictionary::Object::Invalid) + if (info->m_table_impl->m_status != NdbDictionary::Object::Retrieved) { removeCachedObject(*info->m_table_impl); info= get_local_table_info(ev->getTableName(), true);