File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
2
Copyright (c) 2000, 2018, Oracle and/or its affiliates.
3
- Copyright (c) 2009, 2018 , MariaDB
3
+ Copyright (c) 2009, 2019 , MariaDB
4
4
5
5
This program is free software; you can redistribute it and/or modify
6
6
it under the terms of the GNU General Public License as published by
@@ -12093,8 +12093,8 @@ int Table_map_log_event::do_apply_event(rpl_group_info *rgi)
12093
12093
table_list->updating = 1 ;
12094
12094
table_list->required_type = FRMTYPE_TABLE;
12095
12095
12096
- DBUG_PRINT (" debug" , (" table: %s is mapped to %u " , table_list->table_name ,
12097
- table_list->table_id ));
12096
+ DBUG_PRINT (" debug" , (" table: %s is mapped to %lu " , table_list->table_name ,
12097
+ table_list->table_id ));
12098
12098
table_list->master_had_triggers = ((m_flags & TM_BIT_HAS_TRIGGERS_F) ? 1 : 0 );
12099
12099
DBUG_PRINT (" debug" , (" table->master_had_triggers=%d" ,
12100
12100
(int )table_list->master_had_triggers ));
Original file line number Diff line number Diff line change 1
1
#ifndef TABLE_INCLUDED
2
2
#define TABLE_INCLUDED
3
3
/* Copyright (c) 2000, 2017, Oracle and/or its affiliates.
4
- Copyright (c) 2009, 2018 , MariaDB
4
+ Copyright (c) 2009, 2019 , MariaDB
5
5
6
6
This program is free software; you can redistribute it and/or modify
7
7
it under the terms of the GNU General Public License as published by
@@ -1892,7 +1892,7 @@ struct TABLE_LIST
1892
1892
/* Index names in a "... JOIN ... USE/IGNORE INDEX ..." clause. */
1893
1893
List<Index_hint> *index_hints;
1894
1894
TABLE *table; /* opened table */
1895
- ulonglong table_id; /* table id (from binlog) for opened table */
1895
+ ulong table_id; /* table id (from binlog) for opened table */
1896
1896
/*
1897
1897
select_result for derived table to pass it from table creation to table
1898
1898
filling procedure
You can’t perform that action at this time.
0 commit comments