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
2cff807d
Commit
2cff807d
authored
Dec 31, 2019
by
Jan Lindström
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add have_debug to MDEV-20793 and add wait condition to
galera_parallel_autoinc_largetrx to stabilize it.
parent
13b3d7f1
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
0 deletions
+11
-0
mysql-test/suite/galera/disabled.def
mysql-test/suite/galera/disabled.def
+2
-0
mysql-test/suite/galera/t/MDEV-20793.test
mysql-test/suite/galera/t/MDEV-20793.test
+2
-0
mysql-test/suite/galera/t/galera_parallel_autoinc_largetrx.test
...test/suite/galera/t/galera_parallel_autoinc_largetrx.test
+7
-0
No files found.
mysql-test/suite/galera/disabled.def
View file @
2cff807d
...
...
@@ -13,6 +13,7 @@
GCF-1081 : MDEV-18283 Galera test failure on galera.GCF-1081
MW-286 : MDEV-18464 Killing thread can cause mutex deadlock if done concurrently with Galera/replication victim kill
MW-329 : MDEV-19962 Galera test failure on MW-329
MW-336 : MDEV-21409: Galera test failure on MW-336
MW-360 : needs rewrite to be MariaDB gtid compatible
MW-388: MDEV-19803 Long semaphore wait error on galera.MW-388
galera_account_management : MariaDB 10.0 does not support ALTER USER
...
...
@@ -45,3 +46,4 @@ galera_wan : MDEV-17259 Test failure on galera.galera_wan
mysql-wsrep#198 : MDEV-18935 Galera test mysql-wsrep#198 sporaric assertion transaction.cpp:362: int wsrep::transaction::before_commit(): Assertion `state() == s_executing || state() == s_committing || state() == s_must_abort || state() == s_replaying' failed.
partition : MDEV-19958 Galera test failure on galera.partition
query_cache: MDEV-15805 Test failure on galera.query_cache
mysql-test/suite/galera/t/MDEV-20793.test
View file @
2cff807d
...
...
@@ -11,6 +11,8 @@
#
--
source
include
/
galera_cluster
.
inc
--
source
include
/
have_debug
.
inc
--
source
include
/
have_debug_sync
.
inc
CREATE
TABLE
t1
(
f1
INT
PRIMARY
KEY
,
f2
INT
);
INSERT
INTO
t1
VALUES
(
1
,
0
),
(
5
,
0
);
...
...
mysql-test/suite/galera/t/galera_parallel_autoinc_largetrx.test
View file @
2cff807d
...
...
@@ -37,17 +37,24 @@ SET GLOBAL wsrep_slave_threads = 4;
--
connection
node_1
--
reap
--
let
$wait_condition
=
select
count
(
*
)
=
30000
from
t1
;
--
source
include
/
wait_condition
.
inc
SELECT
COUNT
(
*
)
FROM
t1
;
SELECT
COUNT
(
DISTINCT
f1
)
FROM
t1
;
--
connection
node_1a
--
reap
--
let
$wait_condition
=
select
count
(
*
)
=
30000
from
t1
;
--
source
include
/
wait_condition
.
inc
SELECT
COUNT
(
*
)
FROM
t1
;
SELECT
COUNT
(
DISTINCT
f1
)
FROM
t1
;
--
connection
node_2
--
reap
--
disconnect
node_1a
--
let
$wait_condition
=
select
count
(
*
)
=
30000
from
t1
;
--
source
include
/
wait_condition
.
inc
SELECT
COUNT
(
*
)
FROM
t1
;
SELECT
COUNT
(
DISTINCT
f1
)
FROM
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