diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2004-03-15 19:17:18 +0200 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2004-03-15 19:17:18 +0200 |
commit | 2a889c4e2edda495e01992737ed54ff0dbe214f6 (patch) | |
tree | c3323e195a213da6b7cd3e39b1b55d2077ccce64 | |
parent | 8dd15d3173e5587e527fc4ef82f6f055f2daf0e2 (diff) | |
download | mariadb-git-2a889c4e2edda495e01992737ed54ff0dbe214f6.tar.gz |
update.test:
a fix for a test with latest change
mysql-test/t/update.test:
a fix for a test with latest change
-rw-r--r-- | mysql-test/t/update.test | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mysql-test/t/update.test b/mysql-test/t/update.test index a455b308158..2e739dd927d 100644 --- a/mysql-test/t/update.test +++ b/mysql-test/t/update.test @@ -119,7 +119,6 @@ insert into t1 (F1,F2,F3,cnt,groupid) values ('0','0','0',1,6), ('0','1','2',1,5), ('0','2','0',1,3), ('1','0','1',1,2), ('1','2','1',1,1), ('1','2','2',1,1), ('2','0','1',2,4), ('2','2','0',1,7); - delete from t1 using t1 m1,t1 m2 where m1.groupid=m2.groupid and (m1.cnt < m2.cnt or m1.cnt=m2.cnt and m1.F3>m2.F3); select * from t1; drop table t1; |