Commit 55ec1032 authored by unknown's avatar unknown
Browse files

Bug #16445 ndb, schema version error 241 after mysqld restart

- table dictionary status was checked only for Invalid

parent e98c8073
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);