Skip to content
Permalink
Browse files
MDEV-16557 Remove INNOBASE_SHARE::idx_trans_tbl
INNOBASE_SHARE: remove

check_index_consistency(): iterates through keys and looks for InnoDB and .frm
mismatches.

ha_innobase::innobase_get_index(): now uses dict_table_get_index_on_name()

dict_table_get_index_on_name(): uses strcmp() instead of innobase_casestrcmp()
as we just need to know whether strings are equal or not
  • Loading branch information
kevgs committed Aug 2, 2018
1 parent ef3070e commit 1a7a018
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 402 deletions.
@@ -6311,7 +6311,7 @@ dict_table_get_index_on_name(

while (index != NULL) {
if (index->is_committed() == committed
&& innobase_strcasecmp(index->name, name) == 0) {
&& strcmp(index->name, name) == 0) {

return(index);
}

0 comments on commit 1a7a018

Please sign in to comment.