Skip to content

Commit

Permalink
MDEV-10545: Server crashed in my_copy_fix_mb on querying I_S and P_S …
Browse files Browse the repository at this point in the history
…tables

Once THDs have been added to the global "threads" list,
they must modify query_string only after acquiring per-
thread LOCK_thd_data mutex.
  • Loading branch information
Nirbhay Choubey committed Sep 2, 2016
1 parent a322651 commit 31697d0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
1 change: 0 additions & 1 deletion sql/log_event.cc
Expand Up @@ -6022,7 +6022,6 @@ int Load_log_event::do_apply_event(NET* net, rpl_group_info *rgi,
new_db.str= (char *) rpl_filter->get_rewrite_db(db, &new_db.length);
thd->set_db(new_db.str, new_db.length);
DBUG_ASSERT(thd->query() == 0);
thd->reset_query_inner(); // Should not be needed
thd->is_slave_error= 0;
clear_all_errors(thd, const_cast<Relay_log_info*>(rli));

Expand Down
8 changes: 4 additions & 4 deletions sql/sql_acl.cc
Expand Up @@ -2797,7 +2797,7 @@ bool change_password(THD *thd, LEX_USER *user)

if (WSREP(thd) && !IF_WSREP(thd->wsrep_applier, 0))
{
thd->set_query_inner(buff, query_length, system_charset_info);
thd->set_query(buff, query_length, system_charset_info);
WSREP_TO_ISOLATION_BEGIN(WSREP_MYSQL_DB, (char*)"user", NULL);
}

Expand Down Expand Up @@ -2858,7 +2858,7 @@ bool change_password(THD *thd, LEX_USER *user)
{
WSREP_TO_ISOLATION_END;

thd->set_query_inner(query_save);
thd->set_query(query_save);
thd->wsrep_exec_mode = LOCAL_STATE;
}
#endif /* WITH_WSREP */
Expand Down Expand Up @@ -2913,7 +2913,7 @@ int acl_set_default_role(THD *thd, const char *host, const char *user,

if (WSREP(thd) && !IF_WSREP(thd->wsrep_applier, 0))
{
thd->set_query_inner(buff, query_length, system_charset_info);
thd->set_query(buff, query_length, system_charset_info);
WSREP_TO_ISOLATION_BEGIN(WSREP_MYSQL_DB, (char*)"user", NULL);
}

Expand Down Expand Up @@ -3009,7 +3009,7 @@ int acl_set_default_role(THD *thd, const char *host, const char *user,
{
WSREP_TO_ISOLATION_END;

thd->set_query_inner(query_save);
thd->set_query(query_save);
thd->wsrep_exec_mode = LOCAL_STATE;
}
#endif /* WITH_WSREP */
Expand Down
7 changes: 3 additions & 4 deletions sql/sql_parse.cc
Expand Up @@ -7298,10 +7298,9 @@ void mysql_parse(THD *thd, char *rawbuf, uint length,
Note that we don't need LOCK_thread_count to modify query_length.
*/
if (found_semicolon && (ulong) (found_semicolon - thd->query()))
thd->set_query_inner(thd->query(),
(uint32) (found_semicolon -
thd->query() - 1),
thd->charset());
thd->set_query(thd->query(),
(uint32) (found_semicolon - thd->query() - 1),
thd->charset());
/* Actually execute the query */
if (found_semicolon)
{
Expand Down

0 comments on commit 31697d0

Please sign in to comment.