null+****@clear*****
null+****@clear*****
2011年 10月 25日 (火) 12:24:36 JST
Kouhei Sutou 2011-10-25 03:24:36 +0000 (Tue, 25 Oct 2011)
New Revision: b35e3bd8aa4c5ff44be7e61828a253900a9e6beb
Log:
don't process in DBUG_RETURN().
Modified files:
ha_mroonga.cc
Modified: ha_mroonga.cc (+2 -1)
===================================================================
--- ha_mroonga.cc 2011-10-25 03:23:05 +0000 (69889ac)
+++ ha_mroonga.cc 2011-10-25 03:24:36 +0000 (0cd6c0f)
@@ -252,7 +252,8 @@ static MYSQL_THDVAR_BOOL(
static bool mrn_dry_write(THD *thd)
{
DBUG_ENTER("mrn_dry_write");
- DBUG_RETURN(THDVAR(thd, dry_write));
+ bool dry_write_p = THDVAR(thd, dry_write);
+ DBUG_RETURN(dry_write_p);
}
struct st_mysql_sys_var *mrn_system_variables[] =