summaryrefslogtreecommitdiff
path: root/sql/log_event.cc
diff options
context:
space:
mode:
authorAndrei Elkin <andrei.elkin@mariadb.com>2019-01-24 16:57:29 +0200
committerAndrei Elkin <andrei.elkin@mariadb.com>2019-01-25 13:42:27 +0200
commitef0b91ea941785be1f3913fc44ba735d5d03a6f6 (patch)
tree8374259326c133edfa4be708e2b333f710fa18b6 /sql/log_event.cc
parent5d48ea7d07b481ae3930486b4b039e1454273190 (diff)
downloadmariadb-git-ef0b91ea941785be1f3913fc44ba735d5d03a6f6.tar.gz
MDEV-17803: ulonglongization of table_mapping entry::table_id to fix windows compilation in particular.
Diffstat (limited to 'sql/log_event.cc')
-rw-r--r--sql/log_event.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/log_event.cc b/sql/log_event.cc
index 1369ba2d687..4879e9fcecf 100644
--- a/sql/log_event.cc
+++ b/sql/log_event.cc
@@ -11332,8 +11332,8 @@ int Table_map_log_event::do_apply_event(rpl_group_info *rgi)
table_list->updating= 1;
table_list->required_type= FRMTYPE_TABLE;
- DBUG_PRINT("debug", ("table: %s is mapped to %u", table_list->table_name,
- table_list->table_id));
+ DBUG_PRINT("debug", ("table: %s is mapped to %llu", table_list->table_name,
+ table_list->table_id));
table_list->master_had_triggers= ((m_flags & TM_BIT_HAS_TRIGGERS_F) ? 1 : 0);
DBUG_PRINT("debug", ("table->master_had_triggers=%d",
(int)table_list->master_had_triggers));