30 Jan
2012
30 Jan
'12
1:06 p.m.
Hi Sergei! On 30/01/2012 11:37, Sergei Golubchik wrote:
* Field_timestamp::get_timestamp(my_bool*)
Field_timestamp::get_timestamp(ulong*) const
* Field_datetime::store_time(MYSQL_TIME*, enum_mysql_timestamp_type)
Field_datetime::store_time(MYSQL_TIME*)
* Field_newdate::store_time(MYSQL_TIME*, enum_mysql_timestamp_type)
Field_newdate::store_time(MYSQL_TIME*)
Looking at ha_mroonga.cc, you only need to remove the second argument in your calls to store_time() and change the type of the second argument in your call to get_timestamp(). No complex changes are needed.
Indeed, these changes were enough, and I confirmed that all test passed with these changes. Thanks !!! Kazuhiko