mirror of
https://github.com/MariaDB/server.git
synced 2025-09-06 19:08:06 +03:00
An embedded run will output the full path name instead of a relative one. Update results to cover both cases.
6 lines
327 B
Plaintext
6 lines
327 B
Plaintext
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 '**path-to-t1**' to '**path-to-non-existing-db-t1**' (errno: -1 "Internal error < 0 (Not system error)")
|
|
DROP TABLE t1;
|