summaryrefslogtreecommitdiff
path: root/mysql-test/suite/binlog/r/binlog_killed.result
blob: ba4f38fb4c1fabdb319623ad0242b9708cd9bc48 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
create table t1 (a int auto_increment, b int, PRIMARY KEY (a)) ENGINE=InnoDB;
create table t2 (a int auto_increment, b int, PRIMARY KEY (a)) ENGINE=MyISAM;
create table t3 (a int auto_increment, b int, PRIMARY KEY (a)) ENGINE=InnoDB;
select get_lock("a", 20);
get_lock("a", 20)
1
reset master;
insert into t2 values (null, null), (null, get_lock("a", 10));
select @result /* must be zero either way */;
@result
0
drop table t1,t2,t3;