mirror of
https://github.com/MariaDB/server.git
synced 2025-08-01 03:47:19 +03:00
- added "--skip-comments" to the "mysqldump" test to avoid printing comments that include
version-dependent information (which causes test failures when running the test with a different version string) mysql-test/r/mysqldump.result: - fixed the results (removed the version-dependent comments to avoid a test failure) mysql-test/t/mysqldump.test: - added "--skip-comments" to avoid printing comments that include version-dependent information (which causes test failures when running the test with a different version string)
This commit is contained in:
@ -192,6 +192,6 @@ DROP TABLE t1;
|
||||
CREATE TABLE t1 (a decimal(240, 20));
|
||||
INSERT INTO t1 VALUES ("1234567890123456789012345678901234567890"),
|
||||
("0987654321098765432109876543210987654321");
|
||||
--exec $MYSQL_DUMP --insert-ignore test t1
|
||||
--exec $MYSQL_DUMP --insert-ignore --delayed-insert test t1
|
||||
--exec $MYSQL_DUMP --insert-ignore --skip-comments test t1
|
||||
--exec $MYSQL_DUMP --insert-ignore --skip-comments --delayed-insert test t1
|
||||
DROP TABLE t1;
|
||||
|
Reference in New Issue
Block a user