Navigation Menu

Skip to content

Commit

Permalink
[storage] fix typos.
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Oct 27, 2011
1 parent b0cfc11 commit 1c42247
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions ha_mroonga.cc
Expand Up @@ -1789,7 +1789,7 @@ int ha_mroonga::storage_create(const char *name, TABLE *table,
}
}

error = storage_create_indexs(table, tbl_name, tbl_obj, tmp_share);
error = storage_create_indexes(table, tbl_name, tbl_obj, tmp_share);
if (error) {
grn_obj_remove(ctx, tbl_obj);
tbl_obj = NULL;
Expand Down Expand Up @@ -1999,8 +1999,8 @@ int ha_mroonga::storage_create_index(TABLE *table, const char *grn_table_name,
DBUG_RETURN(error);
}

int ha_mroonga::storage_create_indexs(TABLE *table, const char *grn_table_name,
grn_obj *grn_table, MRN_SHARE *tmp_share)
int ha_mroonga::storage_create_indexes(TABLE *table, const char *grn_table_name,
grn_obj *grn_table, MRN_SHARE *tmp_share)
{
MRN_DBUG_ENTER_METHOD();
int error = 0, i;
Expand Down
4 changes: 2 additions & 2 deletions ha_mroonga.h
Expand Up @@ -365,8 +365,8 @@ class ha_mroonga: public handler
grn_obj *grn_table, MRN_SHARE *tmp_share,
KEY *key_info, grn_obj **index_tables,
grn_obj **index_columns, uint i);
int storage_create_indexs(TABLE *table, const char *grn_table_name,
grn_obj *grn_table, MRN_SHARE *tmp_share);
int storage_create_indexes(TABLE *table, const char *grn_table_name,
grn_obj *grn_table, MRN_SHARE *tmp_share);
int close_databases();
int ensure_database_create(const char *name);
int ensure_database_open(const char *name);
Expand Down

0 comments on commit 1c42247

Please sign in to comment.