mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
0745a2b783
myisam/Makefile.am: put zlib at the end (libtool adds the whole bunch of dependencies right after that) sql/Makefile.am: put zlib at the end (libtool adds the whole bunch of dependencies right after that)
23 lines
339 B
Text
23 lines
339 B
Text
drop table if exists t1;
|
|
create table t1 (a int) engine=innodb;
|
|
begin;
|
|
insert into t1 values(1);
|
|
flush tables with read lock;
|
|
select * from t1;
|
|
a
|
|
commit;
|
|
select * from t1;
|
|
a
|
|
unlock tables;
|
|
begin;
|
|
select * from t1 for update;
|
|
a
|
|
1
|
|
begin;
|
|
select * from t1 for update;
|
|
flush tables with read lock;
|
|
commit;
|
|
a
|
|
1
|
|
unlock tables;
|
|
drop table t1;
|