I have a simple query in the database
UPDATE users SET username = 'test' WHERE id = '3'
After that, the request hangs for 120 seconds and show the error "Lock wait timeout exceeded; try restarting transaction" appears. This applies to only one user, in all other cases everything is fine.
I executed the command show full processlist
and Kill all updates that have been locked and again executed this update and still the same.
How can I unlock it?