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
b5c11681
Commit
b5c11681
authored
Sep 16, 2003
by
dlenev@dlenev.mshome
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Made rpl_until test independent from mysqld version
parent
07a9b89f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
mysql-test/r/rpl_until.result
mysql-test/r/rpl_until.result
+1
-1
mysql-test/t/rpl_until.test
mysql-test/t/rpl_until.test
+4
-0
No files found.
mysql-test/r/rpl_until.result
View file @
b5c11681
...
...
@@ -14,7 +14,7 @@ insert into t2 values (3),(4);
drop table t2;
show binlog events;
Log_name Pos Event_type Server_id Orig_log_pos Info
master-bin.000001 4 Start 1 4 Server ver:
4.1.1-alpha-debug-log
, Binlog ver: 3
master-bin.000001 4 Start 1 4 Server ver:
VERSION
, Binlog ver: 3
master-bin.000001 79 Query 1 79 use `test`; create table t1(n int not null auto_increment primary key)
master-bin.000001 172 Query 1 172 use `test`; insert into t1 values (1),(2),(3),(4)
master-bin.000001 244 Query 1 244 use `test`; drop table t1
...
...
mysql-test/t/rpl_until.test
View file @
b5c11681
source
include
/
master
-
slave
.
inc
;
# prepare version for substitutions
let
$VERSION
=
`select version()`
;
# stop slave before he will start replication
connection
slave
;
stop
slave
;
...
...
@@ -13,6 +16,7 @@ create table t2(n int not null auto_increment primary key);
insert
into
t2
values
(
1
),(
2
);
insert
into
t2
values
(
3
),(
4
);
drop
table
t2
;
--
replace_result
$VERSION
VERSION
show
binlog
events
;
# try to replicate all queries until drop of t1
...
...
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