[Commits] 5b4d6595d26: fix test to pass on embedded serever
revision-id: 5b4d6595d26aaaf0bf8bb3c9171cf1da96306a7c (mariadb-10.3.6-163-g5b4d6595d26) parent(s): 33b9f80595d3dad74bd16e8ac430a93aecf8eddf author: Oleksandr Byelkin committer: Oleksandr Byelkin timestamp: 2019-02-21 18:29:17 +0100 message: fix test to pass on embedded serever --- mysql-test/suite/innodb/r/full_crc32_import.result | 4 ---- mysql-test/suite/innodb/t/full_crc32_import.test | 4 ++++ 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mysql-test/suite/innodb/r/full_crc32_import.result b/mysql-test/suite/innodb/r/full_crc32_import.result index 6c68af64c7b..693ad22bab6 100644 --- a/mysql-test/suite/innodb/r/full_crc32_import.result +++ b/mysql-test/suite/innodb/r/full_crc32_import.result @@ -34,8 +34,6 @@ db.opt t1.frm restore: t1 .ibd and .cfg files ALTER TABLE t1 IMPORT TABLESPACE; -Warnings: -Warning 1810 IO Read error: (2, No such file or directory) Error opening './test/t1.cfg', will attempt to import without schema verification SHOW CREATE TABLE t1; Table Create Table t1 CREATE TABLE `t1` ( @@ -110,8 +108,6 @@ ALTER TABLE t1 ROW_FORMAT=DYNAMIC; ALTER TABLE t1 DISCARD TABLESPACE; restore: t1 .ibd and .cfg files ALTER TABLE t1 IMPORT TABLESPACE; -Warnings: -Warning 1810 IO Read error: (2, No such file or directory) Error opening './test/t1.cfg', will attempt to import without schema verification SHOW CREATE TABLE t1; Table Create Table t1 CREATE TABLE `t1` ( diff --git a/mysql-test/suite/innodb/t/full_crc32_import.test b/mysql-test/suite/innodb/t/full_crc32_import.test index 71e38ddbafb..f62c68ec543 100644 --- a/mysql-test/suite/innodb/t/full_crc32_import.test +++ b/mysql-test/suite/innodb/t/full_crc32_import.test @@ -49,7 +49,9 @@ ib_restore_tablespaces("test", "t1"); EOF --remove_file $MYSQLD_DATADIR/test/t1.cfg +--disable_warnings ALTER TABLE t1 IMPORT TABLESPACE; +--enable_warnings SHOW CREATE TABLE t1; UPDATE t1 set b = repeat("de", 100) where b = repeat("cd", 200); --replace_column 9 # @@ -123,7 +125,9 @@ ib_restore_tablespaces("test", "t1"); EOF --remove_file $MYSQLD_DATADIR/test/t1.cfg +--disable_warnings ALTER TABLE t1 IMPORT TABLESPACE; +--enable_warnings SHOW CREATE TABLE t1; UPDATE t1 SET C2 = ST_GeomFromText('POINT(0 0)'); SELECT COUNT(*) FROM t1;
participants (1)
-
Oleksandr Byelkin