mirror of
https://github.com/MariaDB/server.git
synced 2026-05-02 21:25:36 +02:00
Include fix to function open_binlog from 4.1
- Add O_SHARE when opening file. sql/log.cc: Add O_SHARE when opening file. This is from mysql-4.1 but since function has been moved from sql_repl.cc, it was missed during merge.
This commit is contained in:
parent
598b7631cd
commit
c8b88e8e45
1 changed files with 2 additions and 1 deletions
|
|
@ -232,7 +232,8 @@ File open_binlog(IO_CACHE *log, const char *log_file_name, const char **errmsg)
|
|||
File file;
|
||||
DBUG_ENTER("open_binlog");
|
||||
|
||||
if ((file = my_open(log_file_name, O_RDONLY | O_BINARY, MYF(MY_WME))) < 0)
|
||||
if ((file = my_open(log_file_name, O_RDONLY | O_BINARY | O_SHARE,
|
||||
MYF(MY_WME))) < 0)
|
||||
{
|
||||
sql_print_error("Failed to open log (file '%s', errno %d)",
|
||||
log_file_name, my_errno);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue