Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
2453d43a
Commit
2453d43a
authored
May 02, 2002
by
nick@nick.leippe.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Backport of Sasha's fix to 3.23 from 4.0
see dev-private email from sasha, subject: URGENT: rpl_sporadic_master
parent
152734e3
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
16 deletions
+8
-16
BitKeeper/etc/logging_ok
BitKeeper/etc/logging_ok
+1
-0
sql/slave.cc
sql/slave.cc
+7
-16
No files found.
BitKeeper/etc/logging_ok
View file @
2453d43a
...
...
@@ -17,3 +17,4 @@ miguel@hegel.local
arjen@fred.bitbike.com
sinisa@rhols221.adsl.netsonic.fi
Sinisa@sinisa.nasamreza.org
nick@nick.leippe.com
sql/slave.cc
View file @
2453d43a
...
...
@@ -837,9 +837,6 @@ command");
static
uint
read_event
(
MYSQL
*
mysql
,
MASTER_INFO
*
mi
)
{
uint
len
=
packet_error
;
// for convinience lets think we start by
// being in the interrupted state :-)
int
read_errno
=
EINTR
;
// my_real_read() will time us out
// we check if we were told to die, and if not, try reading again
...
...
@@ -848,27 +845,21 @@ static uint read_event(MYSQL* mysql, MASTER_INFO *mi)
return
packet_error
;
#endif
while
(
!
abort_loop
&&
!
abort_slave
&&
len
==
packet_error
&&
read_errno
==
EINTR
)
{
len
=
mc_net_safe_read
(
mysql
);
read_errno
=
errno
;
}
if
(
abort_loop
||
abort_slave
)
return
packet_error
;
if
(
len
==
packet_error
||
(
int
)
len
<
1
)
if
(
len
==
packet_error
||
(
long
)
len
<
1
)
{
sql_print_error
(
"Error reading packet from server: %s (
read_errno %d,
\
sql_print_error
(
"Error reading packet from server: %s (\
server_errno=%d)"
,
mc_mysql_error
(
mysql
),
read_errno
,
mc_mysql_errno
(
mysql
));
mc_mysql_error
(
mysql
),
mc_mysql_errno
(
mysql
));
return
packet_error
;
}
if
(
len
==
1
)
{
sql_print_error
(
"Slave: received 0 length packet from server, apparent\
master shutdown: %s
(%d)
"
,
mc_mysql_error
(
mysql
)
,
read_errno
);
master shutdown: %s"
,
mc_mysql_error
(
mysql
));
return
packet_error
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment