Commit de628592 authored by unknown's avatar unknown

Unused variables removed (many files).


sql/item_func.cc:
  Unused variable 'thd' removed.
sql/item_subselect.cc:
  Unused variable 'type' removed.
sql/slave.cc:
  Unused variable 'return_val' removed.
sql/sql_derived.cc:
  Unused variable 'is_subsel' removed.
sql/sql_parse.cc:
  Unused variables 'pstr' and 'create_info' removed.
sql/sql_prepare.cc:
  Unused variable 'res' removed.
sql/time.cc:
  Unused variable 'str_begin' removed.
parent 6091a75f
...@@ -3196,7 +3196,6 @@ longlong Item_func_is_free_lock::val_int() ...@@ -3196,7 +3196,6 @@ longlong Item_func_is_free_lock::val_int()
{ {
DBUG_ASSERT(fixed == 1); DBUG_ASSERT(fixed == 1);
String *res=args[0]->val_str(&value); String *res=args[0]->val_str(&value);
THD *thd=current_thd;
User_level_lock *ull; User_level_lock *ull;
null_value=0; null_value=0;
...@@ -3219,7 +3218,6 @@ longlong Item_func_is_used_lock::val_int() ...@@ -3219,7 +3218,6 @@ longlong Item_func_is_used_lock::val_int()
{ {
DBUG_ASSERT(fixed == 1); DBUG_ASSERT(fixed == 1);
String *res=args[0]->val_str(&value); String *res=args[0]->val_str(&value);
THD *thd=current_thd;
User_level_lock *ull; User_level_lock *ull;
null_value=1; null_value=1;
......
...@@ -657,7 +657,6 @@ Item_in_subselect::single_value_transformer(JOIN *join, ...@@ -657,7 +657,6 @@ Item_in_subselect::single_value_transformer(JOIN *join,
!(select_lex->next_select())) !(select_lex->next_select()))
{ {
Item *item; Item *item;
subs_type type= substype();
if (func->l_op()) if (func->l_op())
{ {
/* /*
......
...@@ -3562,7 +3562,6 @@ err: ...@@ -3562,7 +3562,6 @@ err:
static int process_io_rotate(MASTER_INFO *mi, Rotate_log_event *rev) static int process_io_rotate(MASTER_INFO *mi, Rotate_log_event *rev)
{ {
int return_val= 1;
DBUG_ENTER("process_io_rotate"); DBUG_ENTER("process_io_rotate");
safe_mutex_assert_owner(&mi->data_lock); safe_mutex_assert_owner(&mi->data_lock);
......
...@@ -117,7 +117,6 @@ static int mysql_derived(THD *thd, LEX *lex, SELECT_LEX_UNIT *unit, ...@@ -117,7 +117,6 @@ static int mysql_derived(THD *thd, LEX *lex, SELECT_LEX_UNIT *unit,
select_union *derived_result; select_union *derived_result;
bool is_union= first_select->next_select() && bool is_union= first_select->next_select() &&
first_select->next_select()->linkage == UNION_TYPE; first_select->next_select()->linkage == UNION_TYPE;
bool is_subsel= first_select->first_inner_unit() ? 1: 0;
SELECT_LEX *save_current_select= lex->current_select; SELECT_LEX *save_current_select= lex->current_select;
DBUG_ENTER("mysql_derived"); DBUG_ENTER("mysql_derived");
......
...@@ -2004,7 +2004,6 @@ mysql_execute_command(THD *thd) ...@@ -2004,7 +2004,6 @@ mysql_execute_command(THD *thd)
{ {
/* This is PREPARE stmt FROM @var. */ /* This is PREPARE stmt FROM @var. */
String str; String str;
String *pstr;
CHARSET_INFO *to_cs= thd->variables.collation_connection; CHARSET_INFO *to_cs= thd->variables.collation_connection;
bool need_conversion; bool need_conversion;
user_var_entry *entry; user_var_entry *entry;
...@@ -2614,7 +2613,6 @@ unsent_create_error: ...@@ -2614,7 +2613,6 @@ unsent_create_error:
case SQLCOM_OPTIMIZE: case SQLCOM_OPTIMIZE:
{ {
HA_CREATE_INFO create_info;
if (check_db_used(thd,tables) || if (check_db_used(thd,tables) ||
check_table_access(thd,SELECT_ACL | INSERT_ACL, tables,0)) check_table_access(thd,SELECT_ACL | INSERT_ACL, tables,0))
goto error; /* purecov: inspected */ goto error; /* purecov: inspected */
......
...@@ -849,7 +849,6 @@ static bool insert_params_from_vars_with_log(Prepared_statement *stmt, ...@@ -849,7 +849,6 @@ static bool insert_params_from_vars_with_log(Prepared_statement *stmt,
List_iterator<LEX_STRING> var_it(varnames); List_iterator<LEX_STRING> var_it(varnames);
String str; String str;
const String *res;
uint32 length= 0; uint32 length= 0;
if (query->copy(stmt->query, stmt->query_length, default_charset_info)) if (query->copy(stmt->query, stmt->query_length, default_charset_info))
DBUG_RETURN(1); DBUG_RETURN(1);
......
...@@ -411,7 +411,6 @@ str_to_TIME(const char *str, uint length, TIME *l_time, uint flags, ...@@ -411,7 +411,6 @@ str_to_TIME(const char *str, uint length, TIME *l_time, uint flags,
ulong not_zero_date, allow_space; ulong not_zero_date, allow_space;
bool is_internal_format; bool is_internal_format;
const char *pos, *last_field_pos; const char *pos, *last_field_pos;
const char *str_begin= str;
const char *end=str+length; const char *end=str+length;
const uchar *format_position; const uchar *format_position;
bool found_delimitier= 0, found_space= 0; bool found_delimitier= 0, found_space= 0;
...@@ -775,7 +774,6 @@ bool str_to_time(const char *str, uint length, TIME *l_time, int *was_cut) ...@@ -775,7 +774,6 @@ bool str_to_time(const char *str, uint length, TIME *l_time, int *was_cut)
{ {
long date[5],value; long date[5],value;
const char *end=str+length, *end_of_days; const char *end=str+length, *end_of_days;
const char *str_begin= str;
bool found_days,found_hours; bool found_days,found_hours;
uint state; uint state;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment