diff options
author | holyfoot/hf@hfmain.(none) <> | 2007-04-29 19:04:05 +0500 |
---|---|---|
committer | holyfoot/hf@hfmain.(none) <> | 2007-04-29 19:04:05 +0500 |
commit | 76afa007aa5661ec65a07dfda580a3ec190e7a3e (patch) | |
tree | fb23a32f5f04f324c45ac9e9bff0e23f9fab2da3 /mysql-test/include | |
parent | e0b6a9baa07aefefab5017f828f24d41e817f01c (diff) | |
parent | 224bb6c4b0861ad63200e02acd6900a3d80af04f (diff) | |
download | mariadb-git-76afa007aa5661ec65a07dfda580a3ec190e7a3e.tar.gz |
Merge mysql.com:/d2/hf/mrg/mysql-5.0-opt
into mysql.com:/d2/hf/mrg/mysql-5.1-opt
Diffstat (limited to 'mysql-test/include')
-rw-r--r-- | mysql-test/include/mix1.inc | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/mysql-test/include/mix1.inc b/mysql-test/include/mix1.inc index 0e1affe70ad..352d5a987a2 100644 --- a/mysql-test/include/mix1.inc +++ b/mysql-test/include/mix1.inc @@ -474,6 +474,38 @@ drop table test; set global query_cache_type=@save_qcache_type; set global query_cache_size=@save_qcache_size; +--source include/innodb_rollback_on_timeout.inc + +# +# Bug #27210: INNODB ON DUPLICATE KEY UPDATE +# + +set @save_qcache_size=@@global.query_cache_size; +set @save_qcache_type=@@global.query_cache_type; +set global query_cache_size=10*1024*1024; +set global query_cache_type=1; +connect (con1,localhost,root,,); +connection con1; +drop table if exists `test`; +CREATE TABLE `test` (`test1` varchar(3) NOT NULL, + `test2` varchar(4) NOT NULL,PRIMARY KEY (`test1`)) + ENGINE=InnoDB DEFAULT CHARSET=latin1; +INSERT INTO `test` (`test1`, `test2`) VALUES ('tes', '5678'); +disconnect con1; +connect (con2,localhost,root,,); +connection con2; +select * from test; +INSERT INTO `test` (`test1`, `test2`) VALUES ('tes', '1234') + ON DUPLICATE KEY UPDATE `test2` = '1234'; +select * from test; +flush tables; +select * from test; +disconnect con2; +connection default; +drop table test; +set global query_cache_type=@save_qcache_type; +set global query_cache_size=@save_qcache_size; + --echo End of 5.0 tests -- source include/have_innodb.inc |