Navigation Menu

Skip to content

Commit

Permalink
mrn_ -> generic_.
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Feb 14, 2012
1 parent 16457a8 commit e611682
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions ha_mroonga.cc
Expand Up @@ -3966,7 +3966,7 @@ void ha_mroonga::position(const uchar *record)
DBUG_VOID_RETURN;
}

int ha_mroonga::mrn_extra(enum ha_extra_function operation)
int ha_mroonga::generic_extra(enum ha_extra_function operation)
{
MRN_DBUG_ENTER_METHOD();
switch (operation) {
Expand Down Expand Up @@ -4021,7 +4021,7 @@ int ha_mroonga::extra(enum ha_extra_function operation)
if ((error = storage_extra(operation)))
DBUG_RETURN(error);
}
error = mrn_extra(operation);
error = generic_extra(operation);
DBUG_RETURN(error);
}

Expand Down Expand Up @@ -4057,7 +4057,7 @@ int ha_mroonga::extra_opt(enum ha_extra_function operation, ulong cache_size)
if ((error = storage_extra_opt(operation, cache_size)))
DBUG_RETURN(error);
}
error = mrn_extra(operation);
error = generic_extra(operation);
DBUG_RETURN(error);
}

Expand Down
2 changes: 1 addition & 1 deletion ha_mroonga.h
Expand Up @@ -537,7 +537,7 @@ class ha_mroonga: public handler
void wrapper_overwrite_index_bits();
int wrapper_close();
int storage_close();
int mrn_extra(enum ha_extra_function operation);
int generic_extra(enum ha_extra_function operation);
int wrapper_extra(enum ha_extra_function operation);
int storage_extra(enum ha_extra_function operation);
int wrapper_extra_opt(enum ha_extra_function operation, ulong cache_size);
Expand Down

0 comments on commit e611682

Please sign in to comment.