You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-07-29 08:21:15 +03:00
MCOL-3674: Fix row-based replication detection
Changed the row-based repl detection mechanism so stmt-based repl works again, however, the detection mechanism is still wrong somehow. What it should be is currently unknown.
This commit is contained in:
@ -1265,7 +1265,7 @@ uint32_t doUpdateDelete(THD* thd, gp_walk_info& gwi)
|
||||
|
||||
if (((thd->lex)->sql_command == SQLCOM_UPDATE) || ((thd->lex)->sql_command == SQLCOM_UPDATE_MULTI))
|
||||
args.add("Update");
|
||||
else if (thd->get_command() == COM_SLAVE_SQL)
|
||||
else if (thd->rgi_slave && thd->rgi_slave->m_table_map.count() != 0)
|
||||
args.add("Row based replication event");
|
||||
else
|
||||
args.add("Delete");
|
||||
@ -1570,7 +1570,7 @@ uint32_t doUpdateDelete(THD* thd, gp_walk_info& gwi)
|
||||
}
|
||||
}
|
||||
}
|
||||
else if (thd->get_command() == COM_SLAVE_SQL)
|
||||
else if (thd->rgi_slave && thd->rgi_slave->m_table_map.count() != 0)
|
||||
{
|
||||
string emsg = logging::IDBErrorInfo::instance()->errorMsg(ERR_RBR_EVENT);
|
||||
setError(current_thd, ER_CHECK_NOT_IMPLEMENTED, emsg);
|
||||
@ -2349,7 +2349,7 @@ int ha_mcs_impl_rnd_init(TABLE* table)
|
||||
thd->lex->sql_command == SQLCOM_LOAD))
|
||||
return 0;
|
||||
|
||||
if (thd->slave_thread && thd->get_command() == COM_SLAVE_SQL)
|
||||
if (thd->rgi_slave && thd->rgi_slave->m_table_map.count() != 0)
|
||||
{
|
||||
string emsg = logging::IDBErrorInfo::instance()->errorMsg(ERR_RBR_EVENT);
|
||||
setError(current_thd, ER_CHECK_NOT_IMPLEMENTED, emsg);
|
||||
|
@ -72,6 +72,7 @@ template <class T> bool isnan(T);
|
||||
#include "tztime.h"
|
||||
#include "derived_handler.h"
|
||||
#include "select_handler.h"
|
||||
#include "rpl_rli.h"
|
||||
|
||||
// Now clean up the pollution as best we can...
|
||||
#undef min
|
||||
@ -113,4 +114,3 @@ inline char* idb_mysql_query_str(THD* thd)
|
||||
|
||||
#endif
|
||||
// vim:ts=4 sw=4:
|
||||
|
||||
|
Reference in New Issue
Block a user