Commit 3ed6b24d authored by Sergei Golubchik's avatar Sergei Golubchik

Linking problem on Windows

parent 0d25ee4f
......@@ -310,8 +310,7 @@ innobase_check_index_keys(
}
}
my_error(ER_WRONG_KEY_COLUMN, MYF(0),
field->table->file->table_type(),
my_error(ER_WRONG_KEY_COLUMN, MYF(0), "InnoDB",
field->field_name);
return(ER_WRONG_KEY_COLUMN);
}
......@@ -325,8 +324,7 @@ innobase_check_index_keys(
continue;
}
my_error(ER_WRONG_KEY_COLUMN, MYF(0),
field->table->file->table_type(),
my_error(ER_WRONG_KEY_COLUMN, MYF(0), "InnoDB",
key_part1.field->field_name);
return(ER_WRONG_KEY_COLUMN);
}
......
......@@ -311,8 +311,7 @@ innobase_check_index_keys(
}
}
my_error(ER_WRONG_KEY_COLUMN, MYF(0),
field->table->file->table_type(),
my_error(ER_WRONG_KEY_COLUMN, MYF(0), "InnoDB",
field->field_name);
return(ER_WRONG_KEY_COLUMN);
}
......@@ -326,8 +325,7 @@ innobase_check_index_keys(
continue;
}
my_error(ER_WRONG_KEY_COLUMN, MYF(0),
field->table->file->table_type(),
my_error(ER_WRONG_KEY_COLUMN, MYF(0), "InnoDB",
key_part1.field->field_name);
return(ER_WRONG_KEY_COLUMN);
}
......
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