innodb_timeout_rollback.result

来自「视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.」· RESULT 代码 · 共 36 行

RESULT
36
字号
show variables like 'innodb_rollback_on_timeout';Variable_name	Valueinnodb_rollback_on_timeout	ONcreate table t1 (a int unsigned not null primary key) engine = innodb;insert into t1 values (1);commit;begin work;insert into t1 values (2);select * from t1;a12begin work;insert into t1 values (5);select * from t1;a15insert into t1 values (2);ERROR HY000: Lock wait timeout exceeded; try restarting transactionselect * from t1;a1commit;select * from t1;a12commit;select * from t1;a12drop table t1;End of 5.0 tests

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?