null+****@clear*****
null+****@clear*****
2012年 1月 31日 (火) 17:41:13 JST
Kouhei Sutou 2012-01-31 17:41:13 +0900 (Tue, 31 Jan 2012)
New Revision: ee9094a88e3bc6afaf9e324a6cf97ace1281e9d9
Log:
[mariadb] remove too much long. refs #1266
Modified files:
ha_mroonga.cc
Modified: ha_mroonga.cc (+1 -1)
===================================================================
--- ha_mroonga.cc 2012-01-31 17:39:52 +0900 (b1ef7b0)
+++ ha_mroonga.cc 2012-01-31 17:41:13 +0900 (6585cee)
@@ -6939,7 +6939,7 @@ long long int ha_mroonga::get_grn_time_from_timestamp_field(Field_timestamp *fie
grn_time = GRN_TIME_PACK(time_value.tv_sec, time_value.tv_usec);
}
#elif defined(MRN_FIELD_TIMESTAMP_GET_TIMESTAMP_USE_MY_TIME_T)
- unsigned long long int micro_seconds;
+ unsigned long int micro_seconds;
my_time_t seconds = field->get_timestamp(µ_seconds);
grn_time = GRN_TIME_PACK(seconds, micro_seconds);
#else