mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
fixed test issues with bug #14354. I had mistakenly included
/var/tmp in my path when testing data diretory. the var directory exists in a src tree but may not exist in a different testing build setup. mysql-test/r/partition_mgm_err.result: added a row insert just to make sure the data and index files are made mysql-test/t/partition_mgm_err.test: removed the /var/tmp path elements since there is not guarantee that other build setups will include this path
This commit is contained in:
@ -112,6 +112,8 @@ ALTER TABLE t1 DROP PARTITION x1;
|
||||
ALTER TABLE t1 DROP PARTITION x0;
|
||||
ERROR HY000: Cannot remove all partitions, use DROP TABLE instead
|
||||
DROP TABLE t1;
|
||||
INSERT INTO t1 VALUES (15);
|
||||
DROP TABLE t1;
|
||||
CREATE TABLE t1 ( id INT NOT NULL,
|
||||
fname VARCHAR(50) NOT NULL,
|
||||
lname VARCHAR(50) NOT NULL,
|
||||
|
Reference in New Issue
Block a user