mariadb/mysql-test/r/lock_tables_lost_commit.result
antony@ltantony.rdg.cyberkinetica.homeunix.net fcf96dbb18 WorkLog#1323
Deprecate the use of TYPE=... Preferred syntax is ENGINE=
2003-12-10 04:31:42 +00:00

8 lines
150 B
Text

drop table if exists t1;
create table t1(a int) engine=innodb;
lock tables t1 write;
insert into t1 values(10);
select * from t1;
a
10
drop table t1;