[Groonga-mysql-commit] mroonga/mroonga [fix-for-visual-studio] [mysql56] ha_rows is long long unsigned int.

Back to archive index

Kouhei Sutou null+****@clear*****
Thu Oct 4 10:41:13 JST 2012


Kouhei Sutou	2011-11-27 22:15:08 +0900 (Sun, 27 Nov 2011)

  New Revision: 0f16e63936f71cb6bacfed9af0417f6d66abb5af
  https://github.com/mroonga/mroonga/commit/0f16e63936f71cb6bacfed9af0417f6d66abb5af

  Merged bec80bd: Merge branch 'master' of github.com:mroonga/mroonga

  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 22:03:51 +0900 (6bd2226)
+++ ha_mroonga.cc    2011-11-27 22:15:08 +0900 (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);
 }
 
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-mysql-commit mailing list
Back to archive index