[Groonga-mysql-commit] mroonga/mroonga [master] call MRN_DBUG_ENTER_METHOD() at the head.

Back to archive index

null+****@clear***** null+****@clear*****
2011年 10月 13日 (木) 17:08:01 JST


Kouhei Sutou	2011-10-13 08:08:01 +0000 (Thu, 13 Oct 2011)

  New Revision: 3b6e7d54116e2f0ff791e2eb020e9830ecb07520

  Log:
    call MRN_DBUG_ENTER_METHOD() at the head.

  Modified files:
    ha_mroonga.cc

  Modified: ha_mroonga.cc (+4 -2)
===================================================================
--- ha_mroonga.cc    2011-10-13 08:07:26 +0000 (6c5b91d)
+++ ha_mroonga.cc    2011-10-13 08:08:01 +0000 (3facfa5)
@@ -3572,9 +3572,10 @@ int ha_mroonga::wrapper_get_record_id(uchar *data, grn_id *record_id,
 
 int ha_mroonga::wrapper_update_row(const uchar *old_data, uchar *new_data)
 {
+  MRN_DBUG_ENTER_METHOD();
+
   int error = 0;
   THD *thd = ha_thd();
-  MRN_DBUG_ENTER_METHOD();
   MRN_SET_WRAP_SHARE_KEY(share, table->s);
   MRN_SET_WRAP_TABLE_KEY(this, table);
   tmp_disable_binlog(thd);
@@ -3912,9 +3913,10 @@ int ha_mroonga::update_row(const uchar *old_data, uchar *new_data)
 
 int ha_mroonga::wrapper_delete_row(const uchar *buf)
 {
+  MRN_DBUG_ENTER_METHOD();
+
   int error = 0;
   THD *thd= ha_thd();
-  MRN_DBUG_ENTER_METHOD();
   MRN_SET_WRAP_SHARE_KEY(share, table->s);
   MRN_SET_WRAP_TABLE_KEY(this, table);
   tmp_disable_binlog(thd);




Groonga-mysql-commit メーリングリストの案内
Back to archive index