null+****@clear*****
null+****@clear*****
2012年 2月 2日 (木) 10:25:35 JST
Kouhei Sutou 2012-02-02 10:25:35 +0900 (Thu, 02 Feb 2012)
New Revision: bc7a000dcb28aa237155c4f22eccf07cab6638f8
Log:
[storage] don't return NULL in cond_push.
It means that 'we handle the condition' but we don't handle it yet.
Modified files:
ha_mroonga.cc
Modified: ha_mroonga.cc (+1 -1)
===================================================================
--- ha_mroonga.cc 2012-02-01 18:34:03 +0900 (16d06e4)
+++ ha_mroonga.cc 2012-02-02 10:25:35 +0900 (72696cd)
@@ -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)