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
bc2c40e7
Commit
bc2c40e7
authored
Feb 11, 2012
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix _another_ race in test case rpl_cant_read_event_incident (seen in 5.5 Buildbot).
parent
0e6dd671
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
2 deletions
+8
-2
mysql-test/suite/rpl/r/rpl_cant_read_event_incident.result
mysql-test/suite/rpl/r/rpl_cant_read_event_incident.result
+1
-1
mysql-test/suite/rpl/t/rpl_cant_read_event_incident.test
mysql-test/suite/rpl/t/rpl_cant_read_event_incident.test
+7
-1
No files found.
mysql-test/suite/rpl/r/rpl_cant_read_event_incident.result
View file @
bc2c40e7
...
@@ -15,5 +15,5 @@ Last_IO_Error = 'Got fatal error 1236 from master when reading data from binary
...
@@ -15,5 +15,5 @@ Last_IO_Error = 'Got fatal error 1236 from master when reading data from binary
reset master;
reset master;
stop slave;
stop slave;
reset slave;
reset slave;
drop table t;
drop table
if exists
t;
End of the tests
End of the tests
mysql-test/suite/rpl/t/rpl_cant_read_event_incident.test
View file @
bc2c40e7
...
@@ -69,6 +69,12 @@ reset master;
...
@@ -69,6 +69,12 @@ reset master;
--
connection
slave
--
connection
slave
stop
slave
;
stop
slave
;
reset
slave
;
reset
slave
;
drop
table
t
;
# table was created from binlog. it does not exist on master.
# The table t may have been created on the slave from binlog. It does not exist
# on the master.
# "May", as it depends on whether the SQL thread had time do do the CREATE
# TABLE before we stopped.
--
disable_warnings
drop
table
if
exists
t
;
--
enable_warnings
--
echo
End
of
the
tests
--
echo
End
of
the
tests
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