1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Brian's mysqldump test modifications made on Ramil's laptop.

mysql-test/r/mysqldump.result:
  Brian's modifications made on Ramil's laptop.
mysql-test/t/mysqldump.test:
  Brian's modifications made on Ramil's laptop.
This commit is contained in:
unknown
2005-05-09 12:21:19 +05:00
parent 312942b9b0
commit e7c27b6f23
2 changed files with 12 additions and 40 deletions

View File

@ -209,9 +209,9 @@ DROP TABLE t1;
# Test for --insert-ignore
#
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
CREATE TABLE t1 (a int);
INSERT INTO t1 VALUES (1),(2),(3);
INSERT INTO t1 VALUES (4),(5),(6);
--exec $MYSQL_DUMP --skip-comments --insert-ignore test t1
--exec $MYSQL_DUMP --skip-comments --insert-ignore --delayed-insert test t1
DROP TABLE t1;