mirror of
https://github.com/MariaDB/server.git
synced 2025-08-07 00:04:31 +03:00
Merge branch '10.9' into 10.10
This commit is contained in:
@@ -7313,7 +7313,6 @@ bool check_fk_parent_table_access(THD *thd,
|
||||
if (key->type == Key::FOREIGN_KEY)
|
||||
{
|
||||
TABLE_LIST parent_table;
|
||||
bool is_qualified_table_name;
|
||||
Foreign_key *fk_key= (Foreign_key *)key;
|
||||
LEX_CSTRING db_name;
|
||||
LEX_CSTRING table_name= { fk_key->ref_table.str,
|
||||
@@ -7330,7 +7329,6 @@ bool check_fk_parent_table_access(THD *thd,
|
||||
|
||||
if (fk_key->ref_db.str)
|
||||
{
|
||||
is_qualified_table_name= true;
|
||||
if (!(db_name.str= (char *) thd->memdup(fk_key->ref_db.str,
|
||||
fk_key->ref_db.length+1)))
|
||||
return true;
|
||||
@@ -7352,7 +7350,6 @@ bool check_fk_parent_table_access(THD *thd,
|
||||
if (!(db_name.str= (char *) thd->memdup(create_db,
|
||||
db_name.length+1)))
|
||||
return true;
|
||||
is_qualified_table_name= true;
|
||||
|
||||
if (check_db_name((LEX_STRING*) &db_name))
|
||||
{
|
||||
@@ -7364,8 +7361,6 @@ bool check_fk_parent_table_access(THD *thd,
|
||||
{
|
||||
if (thd->lex->copy_db_to(&db_name))
|
||||
return true;
|
||||
else
|
||||
is_qualified_table_name= false;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -7391,22 +7386,11 @@ bool check_fk_parent_table_access(THD *thd,
|
||||
if (check_some_access(thd, privileges, &parent_table) ||
|
||||
parent_table.grant.want_privilege)
|
||||
{
|
||||
if (is_qualified_table_name)
|
||||
{
|
||||
const size_t qualified_table_name_len= NAME_LEN + 1 + NAME_LEN + 1;
|
||||
char *qualified_table_name= (char *) thd->alloc(qualified_table_name_len);
|
||||
|
||||
my_snprintf(qualified_table_name, qualified_table_name_len, "%s.%s",
|
||||
db_name.str, table_name.str);
|
||||
table_name.str= qualified_table_name;
|
||||
}
|
||||
|
||||
my_error(ER_TABLEACCESS_DENIED_ERROR, MYF(0),
|
||||
"REFERENCES",
|
||||
thd->security_ctx->priv_user,
|
||||
thd->security_ctx->host_or_ip,
|
||||
table_name.str);
|
||||
|
||||
"REFERENCES",
|
||||
thd->security_ctx->priv_user,
|
||||
thd->security_ctx->host_or_ip,
|
||||
db_name.str, table_name.str);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
@@ -7885,6 +7869,7 @@ static bool wsrep_mysql_parse(THD *thd, char *rawbuf, uint length,
|
||||
thd->lex->sql_command != SQLCOM_SELECT &&
|
||||
thd->wsrep_retry_counter < thd->variables.wsrep_retry_autocommit)
|
||||
{
|
||||
#ifdef ENABLED_DEBUG_SYNC
|
||||
DBUG_EXECUTE_IF("sync.wsrep_retry_autocommit",
|
||||
{
|
||||
const char act[]=
|
||||
@@ -7893,6 +7878,7 @@ static bool wsrep_mysql_parse(THD *thd, char *rawbuf, uint length,
|
||||
"WAIT_FOR wsrep_retry_autocommit_continue";
|
||||
DBUG_ASSERT(!debug_sync_set_action(thd, STRING_WITH_LEN(act)));
|
||||
});
|
||||
#endif
|
||||
WSREP_DEBUG("wsrep retrying AC query: %lu %s",
|
||||
thd->wsrep_retry_counter,
|
||||
wsrep_thd_query(thd));
|
||||
@@ -9213,7 +9199,7 @@ kill_one_thread(THD *thd, longlong id, killed_state kill_signal, killed_type typ
|
||||
tmp= find_thread_by_id(id, type == KILL_TYPE_QUERY);
|
||||
if (!tmp)
|
||||
DBUG_RETURN(error);
|
||||
|
||||
DEBUG_SYNC(thd, "found_killee");
|
||||
if (tmp->get_command() != COM_DAEMON)
|
||||
{
|
||||
/*
|
||||
|
Reference in New Issue
Block a user