mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
Post-fix for BUG#59338.
This commit is contained in:
parent
cb52e82ea7
commit
b6b7be691c
2 changed files with 3 additions and 3 deletions
|
@ -30,11 +30,11 @@ CREATE TABLE t1 (
|
|||
a int unsigned not null auto_increment primary key,
|
||||
b int unsigned,
|
||||
unique (b)
|
||||
) ENGINE=innodb;
|
||||
) ENGINE=myisam;
|
||||
CREATE TABLE t2 (
|
||||
a int unsigned, # to force INSERT SELECT to have a certain order
|
||||
b int unsigned
|
||||
) ENGINE=innodb;
|
||||
) ENGINE=myisam;
|
||||
INSERT INTO t1 VALUES (NULL, 1);
|
||||
INSERT INTO t1 VALUES (NULL, 2);
|
||||
INSERT INTO t1 VALUES (NULL, 3);
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
-- let $engine_type=innodb
|
||||
-- source extra/rpl_tests/rpl_insert_ignore.test
|
||||
|
||||
-- let $engine_type=innodb
|
||||
-- let $engine_type=myisam
|
||||
-- source extra/rpl_tests/rpl_insert_ignore.test
|
||||
|
||||
--source include/rpl_end.inc
|
||||
|
|
Loading…
Reference in a new issue