From 55ec103295d3e562044926f091e44a9c25086f9b Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 14 Feb 2006 17:03:35 +0100 Subject: [PATCH 1/2] Bug #16445 ndb, schema version error 241 after mysqld restart - table dictionary status was checked only for Invalid --- storage/ndb/src/ndbapi/NdbDictionaryImpl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); From 6753b5fdedef9cc6feba41c43f2c358238c0d84a Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 14 Feb 2006 17:40:05 +0100 Subject: [PATCH 2/2] disabled a bunch of tests with reference to bugreporsts to cleanup push-build --- mysql-test/t/disabled.def | 7 +++++++ 1 file changed, 7 insertions(+) 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