diff options
author | unknown <brian@zim.(none)> | 2006-08-14 03:26:53 -0700 |
---|---|---|
committer | unknown <brian@zim.(none)> | 2006-08-14 03:26:53 -0700 |
commit | 03830dd6097d462d1a680e6ced7cfa94ae65db07 (patch) | |
tree | 323751f1a712a89f3fdc2a9d887f48cde9f2cc5b /mysql-test/r/multi_update.result | |
parent | 1363c9b215a2e01e6437fdaa16db0fa86e57362f (diff) | |
download | mariadb-git-03830dd6097d462d1a680e6ced7cfa94ae65db07.tar.gz |
Updated row result, and fix for Windows build.
CMakeLists.txt:
Fix for Windows build
mysql-test/r/binlog_row_binlog.result:
Updated row result
mysql-test/r/multi_update.result:
Updated row result
mysql-test/t/multi_update.test:
Updated row result
Diffstat (limited to 'mysql-test/r/multi_update.result')
-rw-r--r-- | mysql-test/r/multi_update.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/multi_update.result b/mysql-test/r/multi_update.result index 8791b8cc080..3ed0222fcdb 100644 --- a/mysql-test/r/multi_update.result +++ b/mysql-test/r/multi_update.result @@ -492,7 +492,7 @@ create table t2 like t1; insert into t2 select * from t1; delete t1,t2 from t2,t1 where t1.a<'B' and t2.b=t1.b; drop table t1,t2; -create table t1 ( c char(8) not null ) engine=bdb; +create table t1 ( c char(8) not null ) engine=innodb; insert into t1 values ('0'),('1'),('2'),('3'),('4'),('5'),('6'),('7'),('8'),('9'); insert into t1 values ('A'),('B'),('C'),('D'),('E'),('F'); alter table t1 add b char(8) not null; |