Commit ce464a3d authored by unknown's avatar unknown

wrong ndb object used to drop event operation causing DBUG_ASSERT in shutdown/cleanup

parent 226ac7eb
...@@ -1257,7 +1257,7 @@ int ndbcluster_log_schema_op(THD *thd, NDB_SHARE *share, ...@@ -1257,7 +1257,7 @@ int ndbcluster_log_schema_op(THD *thd, NDB_SHARE *share,
max_timeout--; max_timeout--;
if (max_timeout == 0) if (max_timeout == 0)
{ {
sql_print_error("NDB %s: distibuting %s timed out. Ignoring...", sql_print_error("NDB %s: distributing %s timed out. Ignoring...",
type_str, ndb_schema_object->key); type_str, ndb_schema_object->key);
break; break;
} }
...@@ -1566,9 +1566,9 @@ ndb_handle_schema_change(THD *thd, Ndb *ndb, NdbEventOperation *pOp, ...@@ -1566,9 +1566,9 @@ ndb_handle_schema_change(THD *thd, Ndb *ndb, NdbEventOperation *pOp,
share= 0; share= 0;
pOp->setCustomData(0); pOp->setCustomData(0);
pthread_mutex_lock(&injector_mutex); pthread_mutex_lock(&injector_mutex);
injector_ndb->dropEventOperation(pOp); ndb->dropEventOperation(pOp);
pOp= 0; pOp= 0;
pthread_mutex_unlock(&injector_mutex); pthread_mutex_unlock(&injector_mutex);
...@@ -2648,7 +2648,8 @@ ndbcluster_handle_drop_table(Ndb *ndb, const char *event_name, ...@@ -2648,7 +2648,8 @@ ndbcluster_handle_drop_table(Ndb *ndb, const char *event_name,
max_timeout--; max_timeout--;
if (max_timeout == 0) if (max_timeout == 0)
{ {
sql_print_error("NDB %s: timed out. Ignoring...", type_str); sql_print_error("NDB %s: %s timed out. Ignoring...",
type_str, share->key);
break; break;
} }
if (ndb_extra_logging) if (ndb_extra_logging)
...@@ -3273,7 +3274,7 @@ pthread_handler_t ndb_binlog_thread_func(void *arg) ...@@ -3273,7 +3274,7 @@ pthread_handler_t ndb_binlog_thread_func(void *arg)
while (pOp != NULL) while (pOp != NULL)
{ {
if (!pOp->hasError()) if (!pOp->hasError())
ndb_binlog_thread_handle_schema_event(thd, schema_ndb, pOp, ndb_binlog_thread_handle_schema_event(thd, s_ndb, pOp,
&post_epoch_log_list, &post_epoch_log_list,
&post_epoch_unlock_list, &post_epoch_unlock_list,
&mem_root); &mem_root);
...@@ -3533,6 +3534,7 @@ pthread_handler_t ndb_binlog_thread_func(void *arg) ...@@ -3533,6 +3534,7 @@ pthread_handler_t ndb_binlog_thread_func(void *arg)
DBUG_PRINT("info",("removing event operation on %s", DBUG_PRINT("info",("removing event operation on %s",
op->getEvent()->getName())); op->getEvent()->getName()));
NDB_SHARE *share= (NDB_SHARE*) op->getCustomData(); NDB_SHARE *share= (NDB_SHARE*) op->getCustomData();
DBUG_ASSERT(share != 0);
DBUG_ASSERT(share->op == op || DBUG_ASSERT(share->op == op ||
share->op_old == op); share->op_old == op);
share->op= share->op_old= 0; share->op= share->op_old= 0;
...@@ -3552,6 +3554,7 @@ pthread_handler_t ndb_binlog_thread_func(void *arg) ...@@ -3552,6 +3554,7 @@ pthread_handler_t ndb_binlog_thread_func(void *arg)
DBUG_PRINT("info",("removing event operation on %s", DBUG_PRINT("info",("removing event operation on %s",
op->getEvent()->getName())); op->getEvent()->getName()));
NDB_SHARE *share= (NDB_SHARE*) op->getCustomData(); NDB_SHARE *share= (NDB_SHARE*) op->getCustomData();
DBUG_ASSERT(share != 0);
DBUG_ASSERT(share->op == op || DBUG_ASSERT(share->op == op ||
share->op_old == op); share->op_old == op);
share->op= share->op_old= 0; share->op= share->op_old= 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment