Commit 4121d279 authored by unknown's avatar unknown

typo fixed

parent 66cd5e82
...@@ -465,13 +465,13 @@ bool Item_asterisk_remover::fix_fields(THD *thd, ...@@ -465,13 +465,13 @@ bool Item_asterisk_remover::fix_fields(THD *thd,
Item_field *fitem= (Item_field*) item; Item_field *fitem= (Item_field*) item;
if (!list->next || fitem->db_name || fitem->table_name) if (!list->next || fitem->db_name || fitem->table_name)
{ {
TABLE_LIST *table= find_table_in_list(thd, list, TABLE_LIST *table= find_table_in_list(list,
fitem->db_name, fitem->db_name,
fitem->table_name); fitem->table_name);
if (table) if (table)
{ {
TABLE * tb= table->table; TABLE * tb= table->table;
if (find_table_in_list(thd, table->next, fitem->db_name, if (find_table_in_list(table->next, fitem->db_name,
fitem->table_name) != 0 || fitem->table_name) != 0 ||
tb->fields == 1) tb->fields == 1)
{ {
......
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