[Groonga-mysql-commit] mroonga/mroonga [master] [mysql56] ha_rows is long long unsigned int.

Back to archive index

null+****@clear***** null+****@clear*****
2011年 11月 27日 (日) 22:15:08 JST


Kouhei Sutou	2011-11-27 13:15:08 +0000 (Sun, 27 Nov 2011)

  New Revision: 0f16e63936f71cb6bacfed9af0417f6d66abb5af

  Log:
    [mysql56] ha_rows is long long unsigned int.

  Modified files:
    ha_mroonga.cc

  Modified: ha_mroonga.cc (+1 -1)
===================================================================
--- ha_mroonga.cc    2011-11-27 13:03:51 +0000 (6bd2226)
+++ ha_mroonga.cc    2011-11-27 13:15:08 +0000 (828b8ae)
@@ -4402,7 +4402,7 @@ ha_rows ha_mroonga::records_in_range(uint key_nr, key_range *range_min, key_rang
   } else {
     row_count = storage_records_in_range(key_nr, range_min, range_max);
   }
-  DBUG_PRINT("info", ("mroonga: row_count=%lu", row_count));
+  DBUG_PRINT("info", ("mroonga: row_count=%llu", row_count));
   DBUG_RETURN(row_count);
 }
 




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