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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
ecefc69c
Commit
ecefc69c
authored
Jul 16, 2001
by
monty@tik.mysql.fi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made replication test portable accross table handlers
parent
7ff42f82
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
9 deletions
+11
-9
mysql-test/r/rpl_sporadic_master.result
mysql-test/r/rpl_sporadic_master.result
+6
-6
mysql-test/t/rpl_sporadic_master.test
mysql-test/t/rpl_sporadic_master.test
+5
-3
No files found.
mysql-test/r/rpl_sporadic_master.result
View file @
ecefc69c
n
1
2
3
4
5
6
1
0
11
12
13
14
15
mysql-test/t/rpl_sporadic_master.test
View file @
ecefc69c
#test to see if replication can continue when master sporadically fails on
#
test to see if replication can continue when master sporadically fails on
# COM_BINLOG_DUMP and additionally limits the number of events per dump
source
include
/
master
-
slave
.
inc
;
connection
master
;
drop
table
if
exists
t1
;
create
table
t1
(
n
int
not
null
auto_increment
primary
key
);
insert
into
t1
values
(
NULL
),(
NULL
);
delete
from
t1
;
insert
into
t1
values
(
NULL
),(
NULL
);
# We have to use 4 in the following to make this test work with all table types
insert
into
t1
values
(
4
),(
NULL
);
insert
into
t1
values
(
NULL
),(
NULL
);
flush
logs
;
delete
from
t1
;
insert
into
t1
values
(
NULL
),(
NULL
);
insert
into
t1
values
(
10
),(
NULL
);
insert
into
t1
values
(
NULL
),(
NULL
);
insert
into
t1
values
(
NULL
),(
NULL
);
save_master_pos
;
...
...
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