代码搜索:consistent
找到约 2,698 项符合「consistent」的源代码
代码结果 2,698
www.eeworm.com/read/398634/2375044
result consistent_snapshot.result
drop table if exists t1;
create table t1 (a int) engine=innodb;
start transaction with consistent snapshot;
insert into t1 values(1);
select * from t1;
a
commit;
delete from t1;
start transaction;
ins
www.eeworm.com/read/398634/2375278
test consistent_snapshot.test
-- source include/have_innodb.inc
--disable_warnings
drop table if exists t1;
--enable_warnings
connect (con1,localhost,root,,);
connect (con2,localhost,root,,);
### Test 1:
### - While a consisten
www.eeworm.com/read/358128/3004060
result consistent_snapshot.result
drop table if exists t1;
create table t1 (a int) engine=innodb;
start transaction with consistent snapshot;
insert into t1 values(1);
select * from t1;
a
commit;
delete from t1;
start transaction;
ins