diff options
author | unknown <Kristofer.Pettersson@naruto.> | 2006-09-14 11:37:33 +0200 |
---|---|---|
committer | unknown <Kristofer.Pettersson@naruto.> | 2006-09-14 11:37:33 +0200 |
commit | 2247a2ab81708fba82ae3839b48d5fc788f96f02 (patch) | |
tree | 6b57acb95626c568ba818f6893de4716fc39a252 /mysql-test/t/windows.test | |
parent | 3ca9164590151e932ef4750b78e0b927788a3a9a (diff) | |
download | mariadb-git-2247a2ab81708fba82ae3839b48d5fc788f96f02.tar.gz |
Cset exclude: Kristofer.Pettersson@naruto.|ChangeSet|20060912122341|50740
myisam/mi_locking.c:
Exclude
mysql-test/r/windows.result:
Exclude
mysql-test/t/windows.test:
Exclude
Diffstat (limited to 'mysql-test/t/windows.test')
-rw-r--r-- | mysql-test/t/windows.test | 39 |
1 files changed, 0 insertions, 39 deletions
diff --git a/mysql-test/t/windows.test b/mysql-test/t/windows.test index 79517df6517..d6bcfeb8cb3 100644 --- a/mysql-test/t/windows.test +++ b/mysql-test/t/windows.test @@ -18,42 +18,3 @@ create table nu (a int); drop table nu; # End of 4.1 tests - -# -# Bug #20789: Merge Subtable Rename Causes Crash -# -CREATE TABLE `t1` ( - `TIM` datetime NOT NULL, - `VAL` double default NULL -) ENGINE=MyISAM DEFAULT CHARSET=latin1; -CREATE TABLE `t2` ( - `TIM` datetime NOT NULL, - `VAL` double default NULL -) ENGINE=MyISAM DEFAULT CHARSET=latin1; -CREATE TABLE `mt` ( - `TIM` datetime NOT NULL, - `VAL` double default NULL -) ENGINE=MRG_MyISAM DEFAULT CHARSET=latin1 INSERT_METHOD=LAST -UNION=(`t1`,`t2`); - -# insert into the merge table and thus open it. -INSERT INTO mt VALUES ('2006-01-01',0); - -# Alter one of the tables that are part of the merge table -ALTER TABLE `t2` RENAME TO `t`; - -# Insert into the merge table that has just been altered ---error 1015 -INSERT INTO mt VALUES ('2006-01-01',0); ---error 1015 -select * from mt; - -FLUSH TABLES; ---error 1017 -select * from mt; - -# Alter one of the tables that are part of the merge table -ALTER TABLE `t` RENAME TO `t2`; -INSERT INTO mt VALUES ('2006-01-01',0); -select * from mt; - |