Navigation Menu

Skip to content

Commit

Permalink
[storage] don't return NULL in cond_push.
Browse files Browse the repository at this point in the history
It means that 'we handle the condition' but we don't handle it yet.
  • Loading branch information
kou committed Feb 2, 2012
1 parent f0b7e4e commit bc7a000
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ha_mroonga.cc
Expand Up @@ -6158,7 +6158,7 @@ const Item *ha_mroonga::wrapper_cond_push(const Item *cond)
const Item *ha_mroonga::storage_cond_push(const Item *cond)
{
MRN_DBUG_ENTER_METHOD();
DBUG_RETURN(NULL);
DBUG_RETURN(cond);
}

const Item *ha_mroonga::cond_push(const Item *cond)
Expand Down

0 comments on commit bc7a000

Please sign in to comment.