1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Fix for replication when binary log goes over 2G

Split update_of_key into separate tests
Updated make_binary_distribution to generate symbol file for mysqld
This commit is contained in:
monty@donna.mysql.com
2001-01-03 00:13:19 +02:00
parent b443871ed5
commit ac0ceaf28e
37 changed files with 55 additions and 44 deletions

View File

@ -526,7 +526,7 @@ int init_master_info(MASTER_INFO* mi)
return 1;
}
mi->pos = atoi(buf);
mi->pos = atoll(buf);
mi->fd = fd;
if(init_strvar_from_file(mi->host, sizeof(mi->host), &mi->file,
master_host) ||