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
4ef8e642
Commit
4ef8e642
authored
Jan 13, 2011
by
Luis Soares
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
BUG#59444
Added comments to rpl_show_relaylog_events as requested by reviewer.
parent
0ac54682
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
1 deletion
+20
-1
mysql-test/extra/rpl_tests/rpl_show_relaylog_events.inc
mysql-test/extra/rpl_tests/rpl_show_relaylog_events.inc
+20
-1
No files found.
mysql-test/extra/rpl_tests/rpl_show_relaylog_events.inc
View file @
4ef8e642
...
@@ -8,6 +8,12 @@ INSERT INTO t1 VALUES (1);
...
@@ -8,6 +8,12 @@ INSERT INTO t1 VALUES (1);
INSERT
INTO
t1
VALUES
(
2
);
INSERT
INTO
t1
VALUES
(
2
);
INSERT
INTO
t1
VALUES
(
3
);
INSERT
INTO
t1
VALUES
(
3
);
# PART I
#
# SHOWs contents of binary logs on the master and both, binary and
# relay logs, on the slave.
#
--
let
$is_relay_log
=
0
--
let
$is_relay_log
=
0
--
let
$binlog_file
=
query_get_value
(
SHOW
MASTER
STATUS
,
File
,
1
)
--
let
$binlog_file
=
query_get_value
(
SHOW
MASTER
STATUS
,
File
,
1
)
--
source
extra
/
rpl_tests
/
rpl_show_log_events_with_varying_options
.
inc
--
source
extra
/
rpl_tests
/
rpl_show_log_events_with_varying_options
.
inc
...
@@ -20,8 +26,21 @@ INSERT INTO t1 VALUES (3);
...
@@ -20,8 +26,21 @@ INSERT INTO t1 VALUES (3);
--
let
$binlog_file
=
query_get_value
(
SHOW
SLAVE
STATUS
,
Relay_Log_File
,
1
)
--
let
$binlog_file
=
query_get_value
(
SHOW
SLAVE
STATUS
,
Relay_Log_File
,
1
)
--
source
extra
/
rpl_tests
/
rpl_show_log_events_with_varying_options
.
inc
--
source
extra
/
rpl_tests
/
rpl_show_log_events_with_varying_options
.
inc
FLUSH
LOGS
;
#
# PART II
#
# Although this second part of the test may seem redudant it is
# actually needed to assert that SHOW RELAYLOG EVENTS works properly
# with respect to the ordering of the relay log in relay-log.index.
#
# If no file is specified with "IN" then first relay log file in
# relay-log.index (ie, the oldest one) should be picked and its
# contents displayed. The same happens for SHOW BINLOG EVENTS, so we
# show them both. All in all, this is the reason for re-assert after
# MASTER and SLAVE's FLUSH LOGS operations.
#
FLUSH
LOGS
;
--
connection
master
--
connection
master
FLUSH
LOGS
;
FLUSH
LOGS
;
DROP
TABLE
t1
;
DROP
TABLE
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