Skip to content

Commit

Permalink
Use optimized expression on sequential search fallback
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed May 13, 2016
1 parent 8462dd5 commit ea22c75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/expr.c
Original file line number Diff line number Diff line change
Expand Up @@ -6633,7 +6633,7 @@ grn_table_select(grn_ctx *ctx, grn_obj *table, grn_obj *expr,
if (ctx->rc) { break; }
e->codes = codes + si->start;
e->codes_curr = si->end - si->start + 1;
grn_table_select_sequential(ctx, table, expr, v,
grn_table_select_sequential(ctx, table, (grn_obj *)e, v,
res, si->logical_op);
}
}
Expand Down

0 comments on commit ea22c75

Please sign in to comment.