mark some file to been opensource for ce-farm

This commit is contained in:
niyuhang
2023-11-15 11:44:43 +00:00
committed by ob-robot
parent 4900683cff
commit c8ace58297
685 changed files with 1080566 additions and 111051 deletions

View File

@ -0,0 +1,22 @@
--disable_query_log
set @@session.explicit_defaults_for_timestamp=off;
--enable_query_log
# owner: yuchen.wyc
# owner group: SQL1
# description: OUR GOAL: Make all this simple and effective!
#####bug:事务中范围更新超时时间未生效
--disable_warnings
drop table if exists t1;
--enable_warnings
create table t1(pk int primary key, i1 int, v1 varchar(20));
set autocommit=0;
set session ob_trx_timeout=10000000;
#because start from 4.0 empty delete won't cause session into txn,
#we do some really modifies here
--disable_query_log
insert into t1 values(1,1,'1');
--enable_query_log
delete from t1 where pk<4;
sleep 12;
--error 6002
commit;