mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Fixing problem in injector code making NDB tests fire an assertion.
This commit is contained in:
@ -3436,7 +3436,6 @@ pthread_handler_t ndb_binlog_thread_func(void *arg)
|
|||||||
global_system_variables.binlog_format == BINLOG_FORMAT_MIXED)
|
global_system_variables.binlog_format == BINLOG_FORMAT_MIXED)
|
||||||
{
|
{
|
||||||
ndb_binlog_running= TRUE;
|
ndb_binlog_running= TRUE;
|
||||||
thd->current_stmt_binlog_row_based= TRUE; // If in mixed mode
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -39,6 +39,8 @@ injector::transaction::transaction(MYSQL_BIN_LOG *log, THD *thd)
|
|||||||
m_start_pos.m_file_pos= log_info.pos;
|
m_start_pos.m_file_pos= log_info.pos;
|
||||||
|
|
||||||
begin_trans(m_thd);
|
begin_trans(m_thd);
|
||||||
|
|
||||||
|
thd->set_current_stmt_binlog_row_based();
|
||||||
}
|
}
|
||||||
|
|
||||||
injector::transaction::~transaction()
|
injector::transaction::~transaction()
|
||||||
|
Reference in New Issue
Block a user