Comment 1 for bug 387627

Revision history for this message
Stewart Smith (stewart) wrote :

From mix2_myisam in working tree for fixing tests for temp-only myisam:

--- /home/stewart/drizzle/brian-tmp-fix/tests/r/mix2_myisam.result 2009-06-16 07:37:17.413726871 +0300
+++ /home/stewart/drizzle/brian-tmp-fix/tests/r/mix2_myisam.reject 2009-06-16 07:54:30.381725593 +0300
@@ -278,27 +278,12 @@
 update t1 set col2='7' where col1='4';
 select * from t1;
 col1 col2
-1 1
-5 2
-2 3
-3 4
-4 7
 alter table t1 add co3 int not null;
 select * from t1;
 col1 col2 co3
-1 1 0
-5 2 0
-2 3 0
-3 4 0
-4 7 0
 update t1 set col2='9' where col1='2';
 select * from t1;
 col1 col2 co3
-1 1 0
-5 2 0
-2 9 0
-3 4 0
-4 7 0
 drop table t1;
 create TEMPORARY table t1 (a int not null , b int, primary key (a)) engine = MyISAM;
 create TEMPORARY table t2 (a int not null , b int, primary key (a)) engine = MEMORY;