mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
Bug#22540: Incorrect value in column End_log_pos of SHOW BINLOG EVENTS using InnoDB
windows fixies
This commit is contained in:
parent
e62cf05fb1
commit
3b9e5093a3
1 changed files with 1 additions and 1 deletions
|
@ -4034,7 +4034,7 @@ int MYSQL_BIN_LOG::write_cache(IO_CACHE *cache, bool lock_log, bool sync_log)
|
|||
{
|
||||
/* we've got a full event-header, and it came in one piece */
|
||||
|
||||
uchar *log_pos= cache->read_pos + hdr_offs + LOG_POS_OFFSET;
|
||||
uchar *log_pos= (uchar *)cache->read_pos + hdr_offs + LOG_POS_OFFSET;
|
||||
|
||||
/* fix end_log_pos */
|
||||
val= uint4korr(log_pos) + group;
|
||||
|
|
Loading…
Reference in a new issue