Navigation Menu

Skip to content

Commit

Permalink
Add const
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Mar 19, 2012
1 parent 94aeaca commit 0b3e57d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ha_mroonga.cc
Expand Up @@ -2320,7 +2320,7 @@ int ha_mroonga::wrapper_create_index_geo(const char *grn_table_name,
int ha_mroonga::wrapper_create_index(const char *name, TABLE *table,
HA_CREATE_INFO *info,
MRN_SHARE *tmp_share,
char *grn_table_name)
const char *grn_table_name)
{
MRN_DBUG_ENTER_METHOD();

Expand Down
2 changes: 1 addition & 1 deletion ha_mroonga.h
Expand Up @@ -565,7 +565,7 @@ class ha_mroonga: public handler
MRN_SHARE *tmp_share);
int wrapper_create_index(const char *name, TABLE *table,
HA_CREATE_INFO *info, MRN_SHARE *tmp_share,
char *grn_table_name);
const char *grn_table_name);
int storage_create_validate_pseudo_column(TABLE *table);
int storage_create_validate_index(TABLE *table);
int storage_create_index(TABLE *table, const char *grn_table_name,
Expand Down

0 comments on commit 0b3e57d

Please sign in to comment.