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
da521104
Commit
da521104
authored
Nov 12, 2014
by
Jan Lindström
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-7070: rpl.rpl_innodb_bug68220 fails in buildbot
parent
a1dfaa28
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
19 deletions
+11
-19
mysql-test/suite/rpl/r/rpl_innodb_bug68220.result
mysql-test/suite/rpl/r/rpl_innodb_bug68220.result
+9
-11
mysql-test/suite/rpl/t/rpl_innodb_bug68220.test
mysql-test/suite/rpl/t/rpl_innodb_bug68220.test
+2
-8
No files found.
mysql-test/suite/rpl/r/rpl_innodb_bug68220.result
View file @
da521104
include/master-slave.inc
include/master-slave.inc
[connection master]
[connection master]
DROP TABLE IF EXISTS testdb.t1;
DROP DATABASE IF EXISTS testdb;
select variable_value into @master_rows_read from information_schema.global_status where variable_name = 'innodb_rows_read';
select variable_value into @master_rows_read from information_schema.global_status where variable_name = 'innodb_rows_read';
select variable_value into @master_rows_updated from information_schema.global_status where variable_name = 'innodb_rows_updated';
select variable_value into @master_rows_updated from information_schema.global_status where variable_name = 'innodb_rows_updated';
select variable_value into @master_rows_deleted from information_schema.global_status where variable_name = 'innodb_rows_deleted';
select variable_value into @master_rows_deleted from information_schema.global_status where variable_name = 'innodb_rows_deleted';
...
@@ -75,7 +73,7 @@ select @rows_inserted - @slave_rows_inserted;
...
@@ -75,7 +73,7 @@ select @rows_inserted - @slave_rows_inserted;
select variable_value into @system_rows_read from information_schema.global_status where variable_name = 'innodb_system_rows_read';
select variable_value into @system_rows_read from information_schema.global_status where variable_name = 'innodb_system_rows_read';
select @system_rows_read - @slave_system_rows_read;
select @system_rows_read - @slave_system_rows_read;
@system_rows_read - @slave_system_rows_read
@system_rows_read - @slave_system_rows_read
3
0
select variable_value into @system_rows_updated from information_schema.global_status where variable_name = 'innodb_system_rows_updated';
select variable_value into @system_rows_updated from information_schema.global_status where variable_name = 'innodb_system_rows_updated';
select @system_rows_updated - @slave_system_rows_updated;
select @system_rows_updated - @slave_system_rows_updated;
@system_rows_updated - @slave_system_rows_updated
@system_rows_updated - @slave_system_rows_updated
...
@@ -83,11 +81,11 @@ select @system_rows_updated - @slave_system_rows_updated;
...
@@ -83,11 +81,11 @@ select @system_rows_updated - @slave_system_rows_updated;
select variable_value into @system_rows_deleted from information_schema.global_status where variable_name = 'innodb_system_rows_deleted';
select variable_value into @system_rows_deleted from information_schema.global_status where variable_name = 'innodb_system_rows_deleted';
select @system_rows_deleted - @slave_system_rows_deleted;
select @system_rows_deleted - @slave_system_rows_deleted;
@system_rows_deleted - @slave_system_rows_deleted
@system_rows_deleted - @slave_system_rows_deleted
3
0
select variable_value into @system_rows_inserted from information_schema.global_status where variable_name = 'innodb_system_rows_inserted';
select variable_value into @system_rows_inserted from information_schema.global_status where variable_name = 'innodb_system_rows_inserted';
select @system_rows_inserted - @slave_system_rows_inserted;
select @system_rows_inserted - @slave_system_rows_inserted;
@system_rows_inserted - @slave_system_rows_inserted
@system_rows_inserted - @slave_system_rows_inserted
3
0
UPDATE t1 SET i=2 WHERE i=1;
UPDATE t1 SET i=2 WHERE i=1;
==========MASTER==========
==========MASTER==========
select variable_value into @rows_read from information_schema.global_status where variable_name = 'innodb_rows_read';
select variable_value into @rows_read from information_schema.global_status where variable_name = 'innodb_rows_read';
...
@@ -142,7 +140,7 @@ select @rows_inserted - @slave_rows_inserted;
...
@@ -142,7 +140,7 @@ select @rows_inserted - @slave_rows_inserted;
select variable_value into @system_rows_read from information_schema.global_status where variable_name = 'innodb_system_rows_read';
select variable_value into @system_rows_read from information_schema.global_status where variable_name = 'innodb_system_rows_read';
select @system_rows_read - @slave_system_rows_read;
select @system_rows_read - @slave_system_rows_read;
@system_rows_read - @slave_system_rows_read
@system_rows_read - @slave_system_rows_read
4
0
select variable_value into @system_rows_updated from information_schema.global_status where variable_name = 'innodb_system_rows_updated';
select variable_value into @system_rows_updated from information_schema.global_status where variable_name = 'innodb_system_rows_updated';
select @system_rows_updated - @slave_system_rows_updated;
select @system_rows_updated - @slave_system_rows_updated;
@system_rows_updated - @slave_system_rows_updated
@system_rows_updated - @slave_system_rows_updated
...
@@ -150,11 +148,11 @@ select @system_rows_updated - @slave_system_rows_updated;
...
@@ -150,11 +148,11 @@ select @system_rows_updated - @slave_system_rows_updated;
select variable_value into @system_rows_deleted from information_schema.global_status where variable_name = 'innodb_system_rows_deleted';
select variable_value into @system_rows_deleted from information_schema.global_status where variable_name = 'innodb_system_rows_deleted';
select @system_rows_deleted - @slave_system_rows_deleted;
select @system_rows_deleted - @slave_system_rows_deleted;
@system_rows_deleted - @slave_system_rows_deleted
@system_rows_deleted - @slave_system_rows_deleted
4
0
select variable_value into @system_rows_inserted from information_schema.global_status where variable_name = 'innodb_system_rows_inserted';
select variable_value into @system_rows_inserted from information_schema.global_status where variable_name = 'innodb_system_rows_inserted';
select @system_rows_inserted - @slave_system_rows_inserted;
select @system_rows_inserted - @slave_system_rows_inserted;
@system_rows_inserted - @slave_system_rows_inserted
@system_rows_inserted - @slave_system_rows_inserted
4
0
DELETE FROM t1 WHERE i=2;
DELETE FROM t1 WHERE i=2;
==========MASTER==========
==========MASTER==========
select variable_value into @rows_read from information_schema.global_status where variable_name = 'innodb_rows_read';
select variable_value into @rows_read from information_schema.global_status where variable_name = 'innodb_rows_read';
...
@@ -209,7 +207,7 @@ select @rows_inserted - @slave_rows_inserted;
...
@@ -209,7 +207,7 @@ select @rows_inserted - @slave_rows_inserted;
select variable_value into @system_rows_read from information_schema.global_status where variable_name = 'innodb_system_rows_read';
select variable_value into @system_rows_read from information_schema.global_status where variable_name = 'innodb_system_rows_read';
select @system_rows_read - @slave_system_rows_read;
select @system_rows_read - @slave_system_rows_read;
@system_rows_read - @slave_system_rows_read
@system_rows_read - @slave_system_rows_read
5
0
select variable_value into @system_rows_updated from information_schema.global_status where variable_name = 'innodb_system_rows_updated';
select variable_value into @system_rows_updated from information_schema.global_status where variable_name = 'innodb_system_rows_updated';
select @system_rows_updated - @slave_system_rows_updated;
select @system_rows_updated - @slave_system_rows_updated;
@system_rows_updated - @slave_system_rows_updated
@system_rows_updated - @slave_system_rows_updated
...
@@ -217,11 +215,11 @@ select @system_rows_updated - @slave_system_rows_updated;
...
@@ -217,11 +215,11 @@ select @system_rows_updated - @slave_system_rows_updated;
select variable_value into @system_rows_deleted from information_schema.global_status where variable_name = 'innodb_system_rows_deleted';
select variable_value into @system_rows_deleted from information_schema.global_status where variable_name = 'innodb_system_rows_deleted';
select @system_rows_deleted - @slave_system_rows_deleted;
select @system_rows_deleted - @slave_system_rows_deleted;
@system_rows_deleted - @slave_system_rows_deleted
@system_rows_deleted - @slave_system_rows_deleted
5
0
select variable_value into @system_rows_inserted from information_schema.global_status where variable_name = 'innodb_system_rows_inserted';
select variable_value into @system_rows_inserted from information_schema.global_status where variable_name = 'innodb_system_rows_inserted';
select @system_rows_inserted - @slave_system_rows_inserted;
select @system_rows_inserted - @slave_system_rows_inserted;
@system_rows_inserted - @slave_system_rows_inserted
@system_rows_inserted - @slave_system_rows_inserted
5
0
DROP TABLE t1;
DROP TABLE t1;
DROP DATABASE testdb;
DROP DATABASE testdb;
include/rpl_end.inc
include/rpl_end.inc
mysql-test/suite/rpl/t/rpl_innodb_bug68220.test
View file @
da521104
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_innodb
.
inc
--
source
include
/
master
-
slave
.
inc
--
source
include
/
master
-
slave
.
inc
--
source
include
/
have_binlog_format_row
.
inc
#
#
# Bug#68220: innodb_rows_updated is misleading on slave when *info_repository=TABLE
# Bug#68220: innodb_rows_updated is misleading on slave when *info_repository=TABLE
#
#
# clean previous tests
--
connection
master
--
disable_warnings
DROP
TABLE
IF
EXISTS
testdb
.
t1
;
DROP
DATABASE
IF
EXISTS
testdb
;
--
enable_warnings
--
sync_slave_with_master
# created all the base variables at the beginning at the test
# created all the base variables at the beginning at the test
--
connection
master
--
connection
master
select
variable_value
into
@
master_rows_read
from
information_schema
.
global_status
where
variable_name
=
'innodb_rows_read'
;
select
variable_value
into
@
master_rows_read
from
information_schema
.
global_status
where
variable_name
=
'innodb_rows_read'
;
...
@@ -45,6 +38,7 @@ INSERT INTO testdb.t1 VALUES (1);
...
@@ -45,6 +38,7 @@ INSERT INTO testdb.t1 VALUES (1);
# update the row and show counters on master and slave
# update the row and show counters on master and slave
UPDATE
t1
SET
i
=
2
WHERE
i
=
1
;
UPDATE
t1
SET
i
=
2
WHERE
i
=
1
;
--
sync_slave_with_master
--
source
suite
/
rpl
/
include
/
rpl_innodb_rows_counters
.
inc
--
source
suite
/
rpl
/
include
/
rpl_innodb_rows_counters
.
inc
# delete the row and show counters on master and slave
# delete the row and show counters on master and slave
...
...
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