mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
BUG#48216 Replication fails on all slaves after upgrade to 5.0.86 on master
When a sessione is closed, all temporary tables of the session are automatically dropped and are binlogged. But it will be binlogged with wrong database names when the length of the temporary tables' database names are greater than the length of the current database name or the current database is not set. Query_log_event's db_len is forgot to set when Query_log_event's db is set. This patch wrote code to set db_len immediately after db has set.
This commit is contained in:
@@ -798,6 +798,7 @@ void close_temporary_tables(THD *thd)
|
||||
s_query.length() - 1 /* to remove trailing ',' */,
|
||||
0, FALSE, THD::NOT_KILLED);
|
||||
qinfo.db= db.ptr();
|
||||
qinfo.db_len= db.length();
|
||||
thd->variables.character_set_client= cs_save;
|
||||
DBUG_ASSERT(qinfo.error_code == 0);
|
||||
mysql_bin_log.write(&qinfo);
|
||||
|
||||
Reference in New Issue
Block a user