Navigation Menu

Skip to content

Commit

Permalink
[wrapper] use meaningful name.
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Sep 25, 2011
1 parent 5624c69 commit 0c44d6b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ha_mroonga.cc
Expand Up @@ -5029,14 +5029,14 @@ int ha_mroonga::wrapper_ft_read(uchar *buf)
int error;
MRN_DBUG_ENTER_METHOD();
do {
record_id = grn_table_cursor_next(ctx, cursor);
if (record_id == GRN_ID_NIL) {
grn_id found_record_id = grn_table_cursor_next(ctx, cursor);
if (found_record_id == GRN_ID_NIL) {
error = HA_ERR_END_OF_FILE;
clear_cursor();
break;
} else {
GRN_BULK_REWIND(&pkey);
grn_obj_get_value(ctx, key_accessor, record_id, &pkey);
grn_obj_get_value(ctx, key_accessor, found_record_id, &pkey);
MRN_SET_WRAP_SHARE_KEY(share, table->s);
MRN_SET_WRAP_TABLE_KEY(this, table);
#ifdef MRN_HANDLER_HAVE_HA_INDEX_READ_IDX_MAP
Expand Down

0 comments on commit 0c44d6b

Please sign in to comment.