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
371dc336
Commit
371dc336
authored
Aug 24, 2015
by
Philip Stoev
Committed by
Nirbhay Choubey
Sep 09, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
refs codership/mysql-wsrep#90 MTR test case for mysql-wsrep#90
parent
e5b595e9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
96 additions
and
0 deletions
+96
-0
mysql-test/suite/galera/r/mysql-wsrep#90.result
mysql-test/suite/galera/r/mysql-wsrep#90.result
+31
-0
mysql-test/suite/galera/t/mysql-wsrep#90.test
mysql-test/suite/galera/t/mysql-wsrep#90.test
+65
-0
No files found.
mysql-test/suite/galera/r/mysql-wsrep#90.result
0 → 100644
View file @
371dc336
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY) Engine=InnoDB;
SET GLOBAL wsrep_OSU_method = "RSU";
SET DEBUG_SYNC = 'alter_table_before_open_tables WAIT_FOR continue';
ALTER TABLE t1 ADD COLUMN f2 INTEGER;;
SET SESSION wsrep_sync_wait = 0;
SET GLOBAL wsrep_OSU_method = "TOI";
SET DEBUG_SYNC= 'now SIGNAL continue';
SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1';
COUNT(*) = 2
1
SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1';
COUNT(*) = 2
1
DROP TABLE t1;
CREATE TABLE t1 (f1 INTEGER PRIMARY KEY) Engine=InnoDB;
SET GLOBAL wsrep_OSU_method = "TOI";
SET DEBUG_SYNC = 'alter_table_before_open_tables WAIT_FOR continue';
ALTER TABLE t1 ADD COLUMN f2 INTEGER;;
SET SESSION wsrep_sync_wait = 0;
SET GLOBAL wsrep_OSU_method = "RSU";
SET DEBUG_SYNC= 'now SIGNAL continue';
SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1';
COUNT(*) = 2
1
INSERT INTO t1 VALUES (1,2);
SELECT COUNT(*) = 2 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 't1';
COUNT(*) = 2
1
INSERT INTO t1 VALUES (3,4);
DROP TABLE t1;
SET GLOBAL WSREP_OSU_METHOD = TOI;
mysql-test/suite/galera/t/mysql-wsrep#90.test
0 → 100644
View file @
371dc336
# Crash in galera_to_execute_end when wsrep_OSU_method is changed from RSU to TOI during a DDL
--
source
include
/
galera_cluster
.
inc
--
source
include
/
have_innodb
.
inc
--
source
include
/
have_debug_sync
.
inc
CREATE
TABLE
t1
(
f1
INTEGER
PRIMARY
KEY
)
Engine
=
InnoDB
;
--
connection
node_1
SET
GLOBAL
wsrep_OSU_method
=
"RSU"
;
SET
DEBUG_SYNC
=
'alter_table_before_open_tables WAIT_FOR continue'
;
--
send
ALTER
TABLE
t1
ADD
COLUMN
f2
INTEGER
;
--
connect
node_1a
,
127.0
.
0.1
,
root
,
,
test
,
$NODE_MYPORT_1
--
connection
node_1a
SET
SESSION
wsrep_sync_wait
=
0
;
--
let
$wait_condition
=
SELECT
COUNT
(
*
)
=
1
FROM
INFORMATION_SCHEMA
.
PROCESSLIST
WHERE
STATE
=
'debug sync point: alter_table_before_open_tables'
--
source
include
/
wait_condition
.
inc
SET
GLOBAL
wsrep_OSU_method
=
"TOI"
;
SET
DEBUG_SYNC
=
'now SIGNAL continue'
;
--
connection
node_1
--
reap
SELECT
COUNT
(
*
)
=
2
FROM
INFORMATION_SCHEMA
.
COLUMNS
WHERE
TABLE_NAME
=
't1'
;
--
connection
node_2
SELECT
COUNT
(
*
)
=
2
FROM
INFORMATION_SCHEMA
.
COLUMNS
WHERE
TABLE_NAME
=
't1'
;
--
connection
node_1
DROP
TABLE
t1
;
CREATE
TABLE
t1
(
f1
INTEGER
PRIMARY
KEY
)
Engine
=
InnoDB
;
--
connection
node_1
SET
GLOBAL
wsrep_OSU_method
=
"TOI"
;
SET
DEBUG_SYNC
=
'alter_table_before_open_tables WAIT_FOR continue'
;
--
send
ALTER
TABLE
t1
ADD
COLUMN
f2
INTEGER
;
--
connection
node_1a
SET
SESSION
wsrep_sync_wait
=
0
;
--
let
$wait_condition
=
SELECT
COUNT
(
*
)
=
1
FROM
INFORMATION_SCHEMA
.
PROCESSLIST
WHERE
STATE
=
'debug sync point: alter_table_before_open_tables'
--
source
include
/
wait_condition
.
inc
SET
GLOBAL
wsrep_OSU_method
=
"RSU"
;
SET
DEBUG_SYNC
=
'now SIGNAL continue'
;
--
connection
node_1
--
reap
SELECT
COUNT
(
*
)
=
2
FROM
INFORMATION_SCHEMA
.
COLUMNS
WHERE
TABLE_NAME
=
't1'
;
INSERT
INTO
t1
VALUES
(
1
,
2
);
--
connection
node_2
SELECT
COUNT
(
*
)
=
2
FROM
INFORMATION_SCHEMA
.
COLUMNS
WHERE
TABLE_NAME
=
't1'
;
INSERT
INTO
t1
VALUES
(
3
,
4
);
--
connection
node_1
DROP
TABLE
t1
;
SET
GLOBAL
WSREP_OSU_METHOD
=
TOI
;
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