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
dfadb368
Commit
dfadb368
authored
Jul 15, 2016
by
Philip Stoev
Committed by
Nirbhay Choubey
Aug 10, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Galera MTR Tests: Test case for MW-292 : NOW() returns stale timestamp after transaction replay
parent
9a809fe3
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
109 additions
and
0 deletions
+109
-0
mysql-test/suite/galera/r/MW-292.result
mysql-test/suite/galera/r/MW-292.result
+30
-0
mysql-test/suite/galera/t/MW-292.test
mysql-test/suite/galera/t/MW-292.test
+79
-0
No files found.
mysql-test/suite/galera/r/MW-292.result
0 → 100644
View file @
dfadb368
CREATE TABLE rand_table (f1 FLOAT);
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY, f2 CHAR(1));
INSERT INTO t1 VALUES (1, 'a');
INSERT INTO t1 VALUES (2, 'a');
SET AUTOCOMMIT=ON;
START TRANSACTION;
UPDATE t1 SET f2 = 'b' WHERE f1 = 1;
SELECT * FROM t1 WHERE f1 = 2 FOR UPDATE;
f1 f2
2 a
SET GLOBAL wsrep_provider_options = 'dbug=d,commit_monitor_enter_sync';
COMMIT;;
SET SESSION wsrep_sync_wait = 0;
SET SESSION wsrep_on = 0;
SET SESSION wsrep_on = 1;
UPDATE t1 SET f2 = 'c' WHERE f1 = 2;
SET GLOBAL wsrep_provider_options = 'dbug=';
SET GLOBAL wsrep_provider_options = 'signal=commit_monitor_enter_sync';
SELECT TIMEDIFF(SYSDATE(), NOW()) < 2;
TIMEDIFF(SYSDATE(), NOW()) < 2
1
INSERT INTO rand_table VALUES (RAND()),(RAND()),(RAND()),(RAND()),(RAND());
INSERT INTO rand_table VALUES (RAND()),(RAND()),(RAND()),(RAND()),(RAND());
SELECT COUNT(DISTINCT f1) = 10 FROM rand_table;
COUNT(DISTINCT f1) = 10
1
wsrep_local_replays
1
DROP TABLE t1;
DROP TABLE rand_table;
mysql-test/suite/galera/t/MW-292.test
0 → 100644
View file @
dfadb368
#
# MW-292 Reset timestamp after transaction replay
#
# We force transaction replay to happen and then we check that NOW() is not stuck in time.
# As a bonus we also check that RAND() continues to return random values after replay
#
#
--
source
include
/
galera_cluster
.
inc
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_debug_sync
.
inc
--
source
suite
/
galera
/
include
/
galera_have_debug_sync
.
inc
--
let
$wsrep_local_replays_old
=
`SELECT VARIABLE_VALUE FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_local_replays'`
CREATE
TABLE
rand_table
(
f1
FLOAT
);
CREATE
TABLE
t1
(
f1
INTEGER
PRIMARY
KEY
,
f2
CHAR
(
1
));
INSERT
INTO
t1
VALUES
(
1
,
'a'
);
INSERT
INTO
t1
VALUES
(
2
,
'a'
);
--
connection
node_1
SET
AUTOCOMMIT
=
ON
;
START
TRANSACTION
;
UPDATE
t1
SET
f2
=
'b'
WHERE
f1
=
1
;
SELECT
*
FROM
t1
WHERE
f1
=
2
FOR
UPDATE
;
# Block the commit
--
connect
node_1a
,
127.0
.
0.1
,
root
,
,
test
,
$NODE_MYPORT_1
--
let
$galera_sync_point
=
commit_monitor_enter_sync
--
source
include
/
galera_set_sync_point
.
inc
--
connection
node_1
--
send
COMMIT
;
# Wait until commit is blocked
--
connection
node_1a
SET
SESSION
wsrep_sync_wait
=
0
;
--
source
include
/
galera_wait_sync_point
.
inc
# Issue a conflicting update on node #2
--
connection
node_2
UPDATE
t1
SET
f2
=
'c'
WHERE
f1
=
2
;
# Wait for both transactions to be blocked
--
connection
node_1a
--
let
$wait_condition
=
SELECT
COUNT
(
*
)
=
1
FROM
INFORMATION_SCHEMA
.
PROCESSLIST
WHERE
STATE
=
'System lock'
;
--
source
include
/
wait_condition
.
inc
--
let
$wait_condition
=
SELECT
COUNT
(
*
)
=
1
FROM
INFORMATION_SCHEMA
.
PROCESSLIST
WHERE
STATE
=
'init'
AND
INFO
=
'COMMIT'
;
--
source
include
/
wait_condition
.
inc
# Unblock the commit
--
connection
node_1a
--
source
include
/
galera_clear_sync_point
.
inc
--
source
include
/
galera_signal_sync_point
.
inc
# Commit succeeds via replay
--
connection
node_1
--
reap
# Confirm that NOW() is not stuck in time relative to SYSDATE();
--
sleep
3
SELECT
TIMEDIFF
(
SYSDATE
(),
NOW
())
<
2
;
INSERT
INTO
rand_table
VALUES
(
RAND
()),(
RAND
()),(
RAND
()),(
RAND
()),(
RAND
());
INSERT
INTO
rand_table
VALUES
(
RAND
()),(
RAND
()),(
RAND
()),(
RAND
()),(
RAND
());
SELECT
COUNT
(
DISTINCT
f1
)
=
10
FROM
rand_table
;
# wsrep_local_replays has increased by 1
--
let
$wsrep_local_replays_new
=
`SELECT VARIABLE_VALUE FROM INFORMATION_SCHEMA.GLOBAL_STATUS WHERE VARIABLE_NAME = 'wsrep_local_replays'`
--
disable_query_log
--
eval
SELECT
$wsrep_local_replays_new
-
$wsrep_local_replays_old
=
1
AS
wsrep_local_replays
;
--
enable_query_log
--
connection
node_2
DROP
TABLE
t1
;
DROP
TABLE
rand_table
;
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