diff options
author | unknown <serg@serg.mylan> | 2004-11-24 23:16:16 +0100 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-11-24 23:16:16 +0100 |
commit | 6429a0c59897e94e7d467209bd5bd903fd3a5b9a (patch) | |
tree | 271c6eb58cd85132eaed81088f3fddd4bf0e43f1 /mysql-test/r/fulltext.result | |
parent | d1441b68d07067975c5620f83a129491fc1e9b1c (diff) | |
download | mariadb-git-6429a0c59897e94e7d467209bd5bd903fd3a5b9a.tar.gz |
bug#6784
mi_flush_bulk_insert (on dup key error in mi_write)
was mangling info->dupp_key_pos
Diffstat (limited to 'mysql-test/r/fulltext.result')
-rw-r--r-- | mysql-test/r/fulltext.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/fulltext.result b/mysql-test/r/fulltext.result index cff43a821b3..7acc8a2d23f 100644 --- a/mysql-test/r/fulltext.result +++ b/mysql-test/r/fulltext.result @@ -399,3 +399,9 @@ select count(*) from t1; count(*) 1 drop table t1; +create table t1 (a int primary key, b text, fulltext(b)); +create table t2 (a int, b text); +insert t1 values (1, "aaaa"), (2, "bbbb"); +insert t2 values (10, "aaaa"), (2, "cccc"); +replace t1 select * from t2; +drop table t1, t2; |