Commit 56705536 authored by unknown's avatar unknown
Browse files

Bug#7310

  Fix test for classic builds


mysql-test/t/multi_update.test:
  Bug#7310
    Ignore warnings for Bug#5837 test
parent d4ac4cb1
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -340,8 +340,10 @@ drop table t1, t2;

# Test for BUG#5837 - delete with outer join and const tables
drop table if exists t2, t1;
--disable_warnings
create table t1(aclid bigint not null primary key, status tinyint(1) not null ) type = innodb;
create table t2(refid bigint not null primary key, aclid bigint, index idx_acl(aclid) )type = innodb;
--enable_warnings
insert into t2 values(1,null);
delete t2, t1 from t2 as a left join t1 as b on (a.aclid=b.aclid) where a.refid='1';
drop table t1, t2;