Navigation Menu

Skip to content

Commit

Permalink
Specify GRN_CURSOR_ASCENDING explicitly.
Browse files Browse the repository at this point in the history
It is the default order.
  • Loading branch information
kou committed Oct 5, 2012
1 parent e9d22c2 commit 94d0852
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ha_mroonga.cpp
Expand Up @@ -6305,7 +6305,7 @@ int ha_mroonga::storage_index_read_map(uchar *buf, const uchar *key,
flags |= GRN_CURSOR_LE | GRN_CURSOR_DESCENDING;
break;
case HA_READ_AFTER_KEY:
flags |= GRN_CURSOR_GT;
flags |= GRN_CURSOR_GT | GRN_CURSOR_ASCENDING;
break;
default:
break;
Expand Down

0 comments on commit 94d0852

Please sign in to comment.