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
ef0dc50c
Commit
ef0dc50c
authored
Oct 13, 2021
by
Jan Lindström
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-26815 : galera.galera_ftwrl_drain fails with wrong errno 1146
Add wait_conditions to stabilize
parent
2bb8d7c2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
15 additions
and
12 deletions
+15
-12
mysql-test/suite/galera/r/galera_ftwrl_drain.result
mysql-test/suite/galera/r/galera_ftwrl_drain.result
+8
-8
mysql-test/suite/galera/t/galera_ftwrl_drain.test
mysql-test/suite/galera/t/galera_ftwrl_drain.test
+7
-4
No files found.
mysql-test/suite/galera/r/galera_ftwrl_drain.result
View file @
ef0dc50c
...
...
@@ -8,9 +8,9 @@ connection node_2;
SET SESSION wsrep_sync_wait = 0;
SET SESSION wsrep_on = 0;
SET SESSION wsrep_on = 1;
SELECT COUNT(*)
=
0 FROM t1;
COUNT(*) =
0
1
SELECT COUNT(*)
AS EXPECT_
0 FROM t1;
EXPECT_
0
0
connect node_2a, 127.0.0.1, root, , test, $NODE_MYPORT_2;
connection node_2a;
FLUSH TABLES WITH READ LOCK;;
...
...
@@ -27,12 +27,12 @@ ERROR HY000: Lock wait timeout exceeded; try restarting transaction
connection node_2a;
UNLOCK TABLES;
connection node_2;
SELECT COUNT(*)
=
1 FROM t1;
COUNT(*) =
1
SELECT COUNT(*)
AS EXPECT_
1 FROM t1;
EXPECT_
1
1
INSERT INTO t1 VALUES (3);
connection node_1;
SELECT COUNT(*)
=
2 FROM t1;
COUNT(*) =
2
1
SELECT COUNT(*)
AS EXPECT_
2 FROM t1;
EXPECT_
2
2
DROP TABLE t1;
mysql-test/suite/galera/t/galera_ftwrl_drain.test
View file @
ef0dc50c
...
...
@@ -18,7 +18,8 @@
CREATE
TABLE
t1
(
id
INT
PRIMARY
KEY
)
ENGINE
=
InnoDB
;
--
connection
node_2
--
let
$wait_condition
=
SELECT
COUNT
(
*
)
=
1
FROM
INFORMATION_SCHEMA
.
TABLES
WHERE
TABLE_NAME
=
't1'
--
source
include
/
wait_condition
.
inc
--
let
$galera_sync_point
=
apply_monitor_slave_enter_sync
--
source
include
/
galera_set_sync_point
.
inc
...
...
@@ -31,7 +32,7 @@ SET SESSION wsrep_sync_wait = 0;
# Wait until applier has blocked
--
source
include
/
galera_wait_sync_point
.
inc
SELECT
COUNT
(
*
)
=
0
FROM
t1
;
SELECT
COUNT
(
*
)
AS
EXPECT_
0
FROM
t1
;
--
connect
node_2a
,
127.0
.
0.1
,
root
,
,
test
,
$NODE_MYPORT_2
--
connection
node_2a
...
...
@@ -61,9 +62,11 @@ INSERT INTO t2 VALUES (2);
UNLOCK
TABLES
;
--
connection
node_2
SELECT
COUNT
(
*
)
=
1
FROM
t1
;
--
let
$wait_condition
=
SELECT
COUNT
(
*
)
=
1
FROM
t1
--
source
include
/
wait_condition
.
inc
SELECT
COUNT
(
*
)
AS
EXPECT_1
FROM
t1
;
INSERT
INTO
t1
VALUES
(
3
);
--
connection
node_1
SELECT
COUNT
(
*
)
=
2
FROM
t1
;
SELECT
COUNT
(
*
)
AS
EXPECT_
2
FROM
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