1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

cleaned up some of the casts as a result of Mats' review

This commit is contained in:
reggie@fedora.(none)
2006-01-03 22:37:24 -06:00
parent 8df01571bf
commit ffd8a0e5f9
2 changed files with 23 additions and 23 deletions

View File

@ -2220,15 +2220,15 @@ THD::binlog_prepare_pending_rows_event(TABLE* table, uint32 serv_id,
*/
template Rows_log_event*
THD::binlog_prepare_pending_rows_event<Write_rows_log_event>
(TABLE*, uint32, MY_BITMAP const*, my_size_t colcnt, size_t, bool);
(TABLE*, uint32, MY_BITMAP const*, my_size_t colcnt, my_size_t, bool);
template Rows_log_event*
THD::binlog_prepare_pending_rows_event<Delete_rows_log_event>
(TABLE*, uint32, MY_BITMAP const*, my_size_t colcnt, size_t, bool);
(TABLE*, uint32, MY_BITMAP const*, my_size_t colcnt, my_size_t, bool);
template Rows_log_event*
THD::binlog_prepare_pending_rows_event<Update_rows_log_event>
(TABLE*, uint32, MY_BITMAP const*, my_size_t colcnt, size_t, bool);
(TABLE*, uint32, MY_BITMAP const*, my_size_t colcnt, my_size_t, bool);
static char const*
field_type_name(enum_field_types type)