Linking problem on Windows

This commit is contained in:
Sergei Golubchik 2013-04-10 07:25:13 +02:00
parent 0d25ee4f13
commit 3ed6b24d82
2 changed files with 4 additions and 8 deletions

View File

@ -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);
}

View File

@ -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);
}