1
0
mirror of https://github.com/MariaDB/server.git synced 2025-05-28 13:01:41 +03:00

Fix innodb.rename_table for embedded

An embedded run will output the full path name instead of a relative
one. Update results to cover both cases.
This commit is contained in:
Vicențiu Ciorbaru 2018-06-13 08:33:25 +03:00
parent 170bec36c0
commit d2e1ed8b93
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
call mtr.add_suppression("InnoDB: (Operating system error|The error means|Cannot rename file)");
CREATE TABLE t1 (a INT) ENGINE=InnoDB;
RENAME TABLE t1 TO non_existing_db.t1;
ERROR HY000: Error on rename of './test/t1' to './non_existing_db/t1' (errno: -1 "Internal error < 0 (Not system error)")
ERROR HY000: Error on rename of '**path-to-t1**' to '**path-to-non-existing-db-t1**' (errno: -1 "Internal error < 0 (Not system error)")
DROP TABLE t1;

View File

@ -3,7 +3,7 @@
call mtr.add_suppression("InnoDB: (Operating system error|The error means|Cannot rename file)");
CREATE TABLE t1 (a INT) ENGINE=InnoDB;
--replace_result "\\" "/"
--replace_regex /\'.*t1\' to/'**path-to-t1**' to/ /to \'.*non.*t1\'/to '**path-to-non-existing-db-t1**'/
--error ER_ERROR_ON_RENAME
RENAME TABLE t1 TO non_existing_db.t1;