1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

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

sql/sql_class.cc:
  some casts to make Visual 2005 happy
This commit is contained in:
unknown
2006-01-03 22:37:24 -06:00
parent 799765f000
commit 9570a11832
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)