diff options
author | Kristofer.Pettersson@naruto. <> | 2006-09-14 11:37:33 +0200 |
---|---|---|
committer | Kristofer.Pettersson@naruto. <> | 2006-09-14 11:37:33 +0200 |
commit | 441e16e8077f0d26534826e10d2aa90972a9da1d (patch) | |
tree | 6b57acb95626c568ba818f6893de4716fc39a252 /mysql-test/r/windows.result | |
parent | 323efcc0c185e69b1dc35fa6f637aae5905d8080 (diff) | |
download | mariadb-git-441e16e8077f0d26534826e10d2aa90972a9da1d.tar.gz |
Cset exclude: Kristofer.Pettersson@naruto.|ChangeSet|20060912122341|50740
Diffstat (limited to 'mysql-test/r/windows.result')
-rw-r--r-- | mysql-test/r/windows.result | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/mysql-test/r/windows.result b/mysql-test/r/windows.result index e3241daf719..039c5b1476e 100644 --- a/mysql-test/r/windows.result +++ b/mysql-test/r/windows.result @@ -6,31 +6,3 @@ use prn; ERROR 42000: Unknown database 'prn' create table nu (a int); drop table nu; -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 mt VALUES ('2006-01-01',0); -ALTER TABLE `t2` RENAME TO `t`; -INSERT INTO mt VALUES ('2006-01-01',0); -ERROR HY000: Can't lock file (errno: 155) -select * from mt; -ERROR HY000: Can't lock file (errno: 155) -FLUSH TABLES; -select * from mt; -ERROR HY000: Can't find file: 'mt' (errno: 2) -ALTER TABLE `t` RENAME TO `t2`; -INSERT INTO mt VALUES ('2006-01-01',0); -select * from mt; -TIM VAL -2006-01-01 00:00:00 0 -2006-01-01 00:00:00 0 |