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
59f3285f
Commit
59f3285f
authored
Dec 08, 2016
by
Philip Stoev
Committed by
Sachin Setiya
Apr 06, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Galera MTR Tests: Test for MW-329 Fix incorrect affected rows count after replay
parent
ff742629
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
141 additions
and
0 deletions
+141
-0
mysql-test/suite/galera/r/MW-329.result
mysql-test/suite/galera/r/MW-329.result
+80
-0
mysql-test/suite/galera/t/MW-329.test
mysql-test/suite/galera/t/MW-329.test
+61
-0
No files found.
mysql-test/suite/galera/r/MW-329.result
0 → 100644
View file @
59f3285f
CREATE TABLE t1 (f1 INTEGER, f2 CHAR(20) DEFAULT 'abc') ENGINE=InnoDB;
INSERT INTO t1 (f1) VALUES (1),(65535);
FLUSH STATUS;
SELECT VARIABLE_VALUE = 0 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_local_replays';
VARIABLE_VALUE = 0
1
CREATE PROCEDURE proc_insert ()
BEGIN
DECLARE CONTINUE HANDLER FOR SQLEXCEPTION BEGIN END;
SET SESSION wsrep_sync_wait = 0;
WHILE 1 DO
INSERT INTO t1 (f1) VALUES (FLOOR( 1 + RAND( ) * 65535 ));
END WHILE;
END|
CALL proc_insert();;
SELECT ROW_COUNT() > 0;
ROW_COUNT() > 0
1
SELECT FOUND_ROWS() > 0;
FOUND_ROWS() > 0
1
SELECT ROW_COUNT() > 0;
ROW_COUNT() > 0
1
SELECT FOUND_ROWS() > 0;
FOUND_ROWS() > 0
1
SELECT ROW_COUNT() > 0;
ROW_COUNT() > 0
1
SELECT FOUND_ROWS() > 0;
FOUND_ROWS() > 0
1
SELECT ROW_COUNT() > 0;
ROW_COUNT() > 0
1
SELECT FOUND_ROWS() > 0;
FOUND_ROWS() > 0
1
SELECT ROW_COUNT() > 0;
ROW_COUNT() > 0
1
SELECT FOUND_ROWS() > 0;
FOUND_ROWS() > 0
1
SELECT ROW_COUNT() > 0;
ROW_COUNT() > 0
1
SELECT FOUND_ROWS() > 0;
FOUND_ROWS() > 0
1
SELECT ROW_COUNT() > 0;
ROW_COUNT() > 0
1
SELECT FOUND_ROWS() > 0;
FOUND_ROWS() > 0
1
SELECT ROW_COUNT() > 0;
ROW_COUNT() > 0
1
SELECT FOUND_ROWS() > 0;
FOUND_ROWS() > 0
1
SELECT ROW_COUNT() > 0;
ROW_COUNT() > 0
1
SELECT FOUND_ROWS() > 0;
FOUND_ROWS() > 0
1
SELECT ROW_COUNT() > 0;
ROW_COUNT() > 0
1
SELECT FOUND_ROWS() > 0;
FOUND_ROWS() > 0
1
SELECT VARIABLE_VALUE > 0 FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_local_replays';
VARIABLE_VALUE > 0
1
DROP PROCEDURE proc_insert;
DROP TABLE t1;
mysql-test/suite/galera/t/MW-329.test
0 → 100644
View file @
59f3285f
#
# #MW-329 Fix incorrect affected rows count after replay
#
--
source
include
/
galera_cluster
.
inc
CREATE
TABLE
t1
(
f1
INTEGER
,
f2
CHAR
(
20
)
DEFAULT
'abc'
)
ENGINE
=
InnoDB
;
# We start with a populated table
INSERT
INTO
t1
(
f1
)
VALUES
(
1
),(
65535
);
# Clear the wsrep_local_replays counter
FLUSH
STATUS
;
SELECT
VARIABLE_VALUE
=
0
FROM
INFORMATION_SCHEMA
.
GLOBAL_STATUS
WHERE
VARIABLE_NAME
=
'wsrep_local_replays'
;
#
# Run concurrent INSERTs
#
DELIMITER
|
;
CREATE
PROCEDURE
proc_insert
()
BEGIN
DECLARE
CONTINUE
HANDLER
FOR
SQLEXCEPTION
BEGIN
END
;
SET
SESSION
wsrep_sync_wait
=
0
;
WHILE
1
DO
INSERT
INTO
t1
(
f1
)
VALUES
(
FLOOR
(
1
+
RAND
(
)
*
65535
));
END
WHILE
;
END
|
DELIMITER
;
|
--
connect
node_1b
,
127.0
.
0.1
,
root
,
,
test
,
$NODE_MYPORT_1
--
connection
node_1b
--
send
CALL
proc_insert
();
#
# Run concurrent UPDATEs. We expect that each UPDATE will report that
# some rows were matched and updated
#
--
connection
node_2
--
let
$count
=
10
while
(
$count
)
{
--
let
$signature
=
`SELECT LEFT(MD5(RAND()), 10)`
--
disable_query_log
--
eval
UPDATE
t1
SET
f2
=
'$signature'
--
enable_query_log
SELECT
ROW_COUNT
()
>
0
;
SELECT
FOUND_ROWS
()
>
0
;
--
dec
$count
}
#
# Confirm that some transaction replays occurred
#
SELECT
VARIABLE_VALUE
>
0
FROM
INFORMATION_SCHEMA
.
GLOBAL_STATUS
WHERE
VARIABLE_NAME
=
'wsrep_local_replays'
;
DROP
PROCEDURE
proc_insert
;
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