Skip to content

Commit 0ff8976

Browse files
committed
remove more tablespace tests
followup for 8d08971
1 parent 9d65d2f commit 0ff8976

File tree

2 files changed

+0
-24
lines changed

2 files changed

+0
-24
lines changed

mysql-test/suite/galera/r/MW-416.result

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,12 @@ ALTER EVENT ev1 RENAME TO ev2;
1010
ERROR 42000: Access denied for user 'userMW416'@'localhost' to database 'test'
1111
ALTER FUNCTION fun1 COMMENT 'foo';
1212
ERROR 42000: alter routine command denied to user 'userMW416'@'localhost' for routine 'test.fun1'
13-
ALTER LOGFILE GROUP lfg ADD UNDOFILE 'file' ENGINE=InnoDB;
14-
Got one of the listed errors
1513
ALTER PROCEDURE proc1 COMMENT 'foo';
1614
Got one of the listed errors
1715
ALTER SERVER srv OPTIONS (USER 'sally');
1816
Got one of the listed errors
1917
ALTER TABLE tbl DROP COLUMN col;
2018
Got one of the listed errors
21-
ALTER TABLESPACE tblspc DROP DATAFILE 'file' ENGINE=innodb;
22-
Got one of the listed errors
2319
ALTER VIEW vw AS SELECT 1;
2420
Got one of the listed errors
2521
CREATE DATABASE db;
@@ -34,14 +30,10 @@ CREATE PROCEDURE proc1() BEGIN END;
3430
Got one of the listed errors
3531
CREATE INDEX idx ON tbl(id);
3632
Got one of the listed errors
37-
CREATE LOGFILE GROUP lfg ADD UNDOFILE 'undofile' ENGINE innodb;
38-
Got one of the listed errors
3933
CREATE SERVER srv FOREIGN DATA WRAPPER 'fdw' OPTIONS (USER 'user');
4034
Got one of the listed errors
4135
CREATE TABLE t (i int);
4236
Got one of the listed errors
43-
CREATE TABLESPACE tblspc ADD DATAFILE 'file' ENGINE=innodb;
44-
Got one of the listed errors
4537
CREATE TRIGGER trg BEFORE UPDATE ON t FOR EACH ROW BEGIN END;
4638
Got one of the listed errors
4739
CREATE VIEW vw AS SELECT 1;
@@ -54,16 +46,12 @@ DROP FUNCTION fun1;
5446
Got one of the listed errors
5547
DROP INDEX idx ON t0;
5648
Got one of the listed errors
57-
DROP LOGFILE GROUP lfg;
58-
Got one of the listed errors
5949
DROP PROCEDURE proc1;
6050
Got one of the listed errors
6151
DROP SERVEr srv;
6252
Got one of the listed errors
6353
DROP TABLE t0;
6454
Got one of the listed errors
65-
DROP TABLESPACE tblspc;
66-
Got one of the listed errors
6755
DROP TRIGGER trg;
6856
Got one of the listed errors
6957
DROP VIEW vw;

mysql-test/suite/galera/t/MW-416.test

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -19,16 +19,12 @@ ALTER EVENT ev1 RENAME TO ev2;
1919
ALTER FUNCTION fun1 COMMENT 'foo';
2020
#--error 1044,1227
2121
#ALTER INSTANCE ROTATE INNODB MASTER KEY;
22-
--error 1044,1227
23-
ALTER LOGFILE GROUP lfg ADD UNDOFILE 'file' ENGINE=InnoDB;
2422
--error 1044,1227,1370
2523
ALTER PROCEDURE proc1 COMMENT 'foo';
2624
--error 1044,1227,1370
2725
ALTER SERVER srv OPTIONS (USER 'sally');
2826
--error 1044,1142,1227,1370
2927
ALTER TABLE tbl DROP COLUMN col;
30-
--error 1044,1227,1370
31-
ALTER TABLESPACE tblspc DROP DATAFILE 'file' ENGINE=innodb;
3228
--error 1044,1142,1227,1370
3329
ALTER VIEW vw AS SELECT 1;
3430

@@ -45,14 +41,10 @@ CREATE PROCEDURE proc1() BEGIN END;
4541
--error 1044,1142,1227,1370
4642
CREATE INDEX idx ON tbl(id);
4743
--error 1044,1142,1227,1370
48-
CREATE LOGFILE GROUP lfg ADD UNDOFILE 'undofile' ENGINE innodb;
49-
--error 1044,1142,1227,1370
5044
CREATE SERVER srv FOREIGN DATA WRAPPER 'fdw' OPTIONS (USER 'user');
5145
--error 1044,1142,1227,1370
5246
CREATE TABLE t (i int);
5347
--error 1044,1142,1227,1370
54-
CREATE TABLESPACE tblspc ADD DATAFILE 'file' ENGINE=innodb;
55-
--error 1044,1142,1227,1370
5648
CREATE TRIGGER trg BEFORE UPDATE ON t FOR EACH ROW BEGIN END;
5749
--error 1044,1142,1227,1370
5850
CREATE VIEW vw AS SELECT 1;
@@ -67,16 +59,12 @@ DROP EVENT ev;
6759
DROP FUNCTION fun1;
6860
--error 1044,1142,1227,1370
6961
DROP INDEX idx ON t0;
70-
--error 1044,1142,1227,1370,1064
71-
DROP LOGFILE GROUP lfg;
7262
--error 1044,1142,1227,1370
7363
DROP PROCEDURE proc1;
7464
--error 1044,1142,1227,1370
7565
DROP SERVEr srv;
7666
--error 1044,1142,1227,1370
7767
DROP TABLE t0;
78-
--error 1044,1142,1227,1370,1064
79-
DROP TABLESPACE tblspc;
8068
--error 1044,1142,1227,1360,1370
8169
DROP TRIGGER trg;
8270
--error 1044,1142,1227,1370

0 commit comments

Comments
 (0)