今天开发测试时候,idea debug模式下报错,数据库表事务没有提交,idea服务强制关闭,导致数据库表某一条记录被锁,通过datagrip工具强制删除表记录都不行,找了好久原因。。
最后发现这条被锁
用datagrip console模式下删除不了该条记录,一直报Getting “Lock wait timeout exceeded; try restarting transaction” even though I'm not using a transaction 错误
一直报这个错误,在网上找了一些资料,都是说被锁表,问题这张表没被锁,其他记录都能正常操作,我的应该是这条记录被锁。
最后进入datagrip console file模式
show processlist;
kill 线程号id
学习参考链接