mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
Disabling tests that are not relevant after BUG#40116, these will be enabled
when WL#2867 or associated fixes for 5.1 is added to solve the problem.
This commit is contained in:
parent
14cf09c12a
commit
acd1d7c2f5
2 changed files with 24 additions and 40 deletions
|
@ -111,22 +111,10 @@ INSERT INTO innodb_ndb VALUES (12);
|
|||
COMMIT;
|
||||
---- ROLLBACK ----
|
||||
BEGIN;
|
||||
INSERT INTO myisam_innodb VALUES (13);
|
||||
INSERT INTO myisam_innodb VALUES (14);
|
||||
ROLLBACK;
|
||||
Warnings:
|
||||
Warning 1196 Some non-transactional changed tables couldn't be rolled back
|
||||
BEGIN;
|
||||
INSERT INTO innodb_myisam VALUES (15);
|
||||
INSERT INTO innodb_myisam VALUES (16);
|
||||
ROLLBACK;
|
||||
BEGIN;
|
||||
INSERT INTO myisam_ndb VALUES (17);
|
||||
INSERT INTO myisam_ndb VALUES (18);
|
||||
ROLLBACK;
|
||||
Warnings:
|
||||
Warning 1196 Some non-transactional changed tables couldn't be rolled back
|
||||
BEGIN;
|
||||
INSERT INTO ndb_myisam VALUES (19);
|
||||
INSERT INTO ndb_myisam VALUES (20);
|
||||
ROLLBACK;
|
||||
|
@ -167,22 +155,10 @@ INSERT INTO innodb_ndb VALUES (36);
|
|||
COMMIT;
|
||||
---- ROLLBACK ----
|
||||
BEGIN;
|
||||
INSERT INTO myisam_innodb VALUES (37);
|
||||
INSERT INTO myisam_innodb VALUES (38);
|
||||
ROLLBACK;
|
||||
Warnings:
|
||||
Warning 1196 Some non-transactional changed tables couldn't be rolled back
|
||||
BEGIN;
|
||||
INSERT INTO innodb_myisam VALUES (39);
|
||||
INSERT INTO innodb_myisam VALUES (40);
|
||||
ROLLBACK;
|
||||
BEGIN;
|
||||
INSERT INTO myisam_ndb VALUES (41);
|
||||
INSERT INTO myisam_ndb VALUES (42);
|
||||
ROLLBACK;
|
||||
Warnings:
|
||||
Warning 1196 Some non-transactional changed tables couldn't be rolled back
|
||||
BEGIN;
|
||||
INSERT INTO ndb_myisam VALUES (43);
|
||||
INSERT INTO ndb_myisam VALUES (44);
|
||||
ROLLBACK;
|
||||
|
@ -209,25 +185,15 @@ INSERT INTO innodb_ndb VALUES (59);
|
|||
INSERT INTO innodb_ndb VALUES (60);
|
||||
==== AUTOCOMMIT=0, single statements, myisam on master ====
|
||||
SET AUTOCOMMIT = 0;
|
||||
INSERT INTO myisam_innodb VALUES (61);
|
||||
INSERT INTO myisam_innodb VALUES (62);
|
||||
INSERT INTO myisam_ndb VALUES (63);
|
||||
INSERT INTO myisam_ndb VALUES (64);
|
||||
==== Show results ====
|
||||
SELECT * FROM myisam_innodb ORDER BY a;
|
||||
a
|
||||
1
|
||||
2
|
||||
13
|
||||
14
|
||||
25
|
||||
26
|
||||
37
|
||||
38
|
||||
49
|
||||
50
|
||||
61
|
||||
62
|
||||
SELECT * FROM innodb_myisam ORDER BY a;
|
||||
a
|
||||
3
|
||||
|
@ -240,16 +206,10 @@ SELECT * FROM myisam_ndb ORDER BY a;
|
|||
a
|
||||
5
|
||||
6
|
||||
17
|
||||
18
|
||||
29
|
||||
30
|
||||
41
|
||||
42
|
||||
53
|
||||
54
|
||||
63
|
||||
64
|
||||
SELECT * FROM ndb_myisam ORDER BY a;
|
||||
a
|
||||
7
|
||||
|
|
|
@ -134,11 +134,15 @@ connection master;
|
|||
|
||||
--echo ---- ROLLBACK ----
|
||||
|
||||
# This test does not work in ROW mode after the changes introduced in
|
||||
# BUG#40116. After WL#2687 is pushed, Tests should be added again.
|
||||
--disable_parsing
|
||||
BEGIN;
|
||||
INSERT INTO myisam_innodb VALUES (13);
|
||||
INSERT INTO myisam_innodb VALUES (14);
|
||||
ROLLBACK;
|
||||
sync_slave_with_master;
|
||||
--enable_parsing
|
||||
connection master;
|
||||
BEGIN;
|
||||
INSERT INTO innodb_myisam VALUES (15);
|
||||
|
@ -147,12 +151,17 @@ ROLLBACK;
|
|||
sync_slave_with_master;
|
||||
connection master;
|
||||
|
||||
# This test does not work in ROW mode after the changes introduced in
|
||||
# BUG#40116. After WL#2687 is pushed, these tests should be enabled
|
||||
# again.
|
||||
--disable_parsing
|
||||
BEGIN;
|
||||
INSERT INTO myisam_ndb VALUES (17);
|
||||
INSERT INTO myisam_ndb VALUES (18);
|
||||
ROLLBACK;
|
||||
sync_slave_with_master;
|
||||
connection master;
|
||||
--enable_parsing
|
||||
BEGIN;
|
||||
INSERT INTO ndb_myisam VALUES (19);
|
||||
INSERT INTO ndb_myisam VALUES (20);
|
||||
|
@ -221,12 +230,17 @@ connection master;
|
|||
|
||||
--echo ---- ROLLBACK ----
|
||||
|
||||
# This test does not work in ROW mode after the changes introduced in
|
||||
# BUG#40116. After WL#2687 is pushed, these tests should be enabled
|
||||
# again.
|
||||
--disable_parsing
|
||||
BEGIN;
|
||||
INSERT INTO myisam_innodb VALUES (37);
|
||||
INSERT INTO myisam_innodb VALUES (38);
|
||||
ROLLBACK;
|
||||
sync_slave_with_master;
|
||||
connection master;
|
||||
--enable_parsing
|
||||
BEGIN;
|
||||
INSERT INTO innodb_myisam VALUES (39);
|
||||
INSERT INTO innodb_myisam VALUES (40);
|
||||
|
@ -234,12 +248,17 @@ ROLLBACK;
|
|||
sync_slave_with_master;
|
||||
connection master;
|
||||
|
||||
# This test does not work in ROW mode after the changes introduced in
|
||||
# BUG#40116. After WL#2687 is pushed, these tests should be enabled
|
||||
# again.
|
||||
--disable_parsing
|
||||
BEGIN;
|
||||
INSERT INTO myisam_ndb VALUES (41);
|
||||
INSERT INTO myisam_ndb VALUES (42);
|
||||
ROLLBACK;
|
||||
sync_slave_with_master;
|
||||
connection master;
|
||||
--enable_parsing
|
||||
BEGIN;
|
||||
INSERT INTO ndb_myisam VALUES (43);
|
||||
INSERT INTO ndb_myisam VALUES (44);
|
||||
|
@ -295,6 +314,10 @@ connection master;
|
|||
|
||||
SET AUTOCOMMIT = 0;
|
||||
|
||||
# These tests do not work in ROW mode after the changes introduced in
|
||||
# BUG#40116. After WL#2687 is pushed, these tests should be enabled
|
||||
# again.
|
||||
--disable_parsing
|
||||
# This tests BUG#29288.
|
||||
INSERT INTO myisam_innodb VALUES (61);
|
||||
INSERT INTO myisam_innodb VALUES (62);
|
||||
|
@ -305,6 +328,7 @@ INSERT INTO myisam_ndb VALUES (63);
|
|||
INSERT INTO myisam_ndb VALUES (64);
|
||||
sync_slave_with_master;
|
||||
connection master;
|
||||
--enable_parsing
|
||||
|
||||
|
||||
--echo ==== Show results ====
|
||||
|
|
Loading…
Reference in a new issue