Fix -ansi -pedantic compilation failure. Fix coding style.
This commit is contained in:
parent
24a40da5e8
commit
56faadcc42
@ -2617,7 +2617,7 @@ mysql_execute_command(THD *thd)
|
|||||||
goto error; /* purecov: inspected */
|
goto error; /* purecov: inspected */
|
||||||
thd->enable_slow_log= opt_log_slow_admin_statements;
|
thd->enable_slow_log= opt_log_slow_admin_statements;
|
||||||
res = mysql_backup_table(thd, first_table);
|
res = mysql_backup_table(thd, first_table);
|
||||||
(TABLE_LIST*) select_lex->table_list.first=first_table;
|
select_lex->table_list.first= (byte*) first_table;
|
||||||
lex->query_tables=all_tables;
|
lex->query_tables=all_tables;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -2630,7 +2630,7 @@ mysql_execute_command(THD *thd)
|
|||||||
goto error; /* purecov: inspected */
|
goto error; /* purecov: inspected */
|
||||||
thd->enable_slow_log= opt_log_slow_admin_statements;
|
thd->enable_slow_log= opt_log_slow_admin_statements;
|
||||||
res = mysql_restore_table(thd, first_table);
|
res = mysql_restore_table(thd, first_table);
|
||||||
(TABLE_LIST*) select_lex->table_list.first=first_table;
|
select_lex->table_list.first= (byte*) first_table;
|
||||||
lex->query_tables=all_tables;
|
lex->query_tables=all_tables;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -3134,7 +3134,7 @@ end_with_restore_list:
|
|||||||
mysql_bin_log.write(&qinfo);
|
mysql_bin_log.write(&qinfo);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
(TABLE_LIST*) select_lex->table_list.first=first_table;
|
select_lex->table_list.first= (byte*) first_table;
|
||||||
lex->query_tables=all_tables;
|
lex->query_tables=all_tables;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -3146,7 +3146,7 @@ end_with_restore_list:
|
|||||||
goto error; /* purecov: inspected */
|
goto error; /* purecov: inspected */
|
||||||
thd->enable_slow_log= opt_log_slow_admin_statements;
|
thd->enable_slow_log= opt_log_slow_admin_statements;
|
||||||
res = mysql_check_table(thd, first_table, &lex->check_opt);
|
res = mysql_check_table(thd, first_table, &lex->check_opt);
|
||||||
(TABLE_LIST*) select_lex->table_list.first=first_table;
|
select_lex->table_list.first= (byte*) first_table;
|
||||||
lex->query_tables=all_tables;
|
lex->query_tables=all_tables;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -3168,7 +3168,7 @@ end_with_restore_list:
|
|||||||
mysql_bin_log.write(&qinfo);
|
mysql_bin_log.write(&qinfo);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
(TABLE_LIST*) select_lex->table_list.first=first_table;
|
select_lex->table_list.first= (byte*) first_table;
|
||||||
lex->query_tables=all_tables;
|
lex->query_tables=all_tables;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -3193,7 +3193,7 @@ end_with_restore_list:
|
|||||||
mysql_bin_log.write(&qinfo);
|
mysql_bin_log.write(&qinfo);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
(TABLE_LIST*) select_lex->table_list.first=first_table;
|
select_lex->table_list.first= (byte*) first_table;
|
||||||
lex->query_tables=all_tables;
|
lex->query_tables=all_tables;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user