Navigation Menu

Skip to content

Commit

Permalink
fix wrong type.
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Jul 28, 2011
1 parent 61d0ae3 commit 9003b15
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ha_mroonga.cc
Expand Up @@ -5284,14 +5284,14 @@ double ha_mroonga::storage_read_time(uint index, uint ranges, ha_rows rows)
double ha_mroonga::read_time(uint index, uint ranges, ha_rows rows)
{
MRN_DBUG_ENTER_METHOD();
int error;
double time;
if (share->wrapper_mode)
{
error = wrapper_read_time(index, ranges, rows);
time = wrapper_read_time(index, ranges, rows);
} else {
error = storage_read_time(index, ranges, rows);
time = storage_read_time(index, ranges, rows);
}
DBUG_RETURN(error);
DBUG_RETURN(time);
}

const key_map *ha_mroonga::wrapper_keys_to_use_for_scanning()
Expand Down

0 comments on commit 9003b15

Please sign in to comment.