vote up 1 vote down star

In manual it said that InnoDB has row-level locking, so why if I select some of the rows with FOR UPDATE statement it won't let me insert new row into that table? New row shouldn't be locked after all, it wasn't selected.

flag

79% accept rate

1 Answer

vote up 1 vote down check

In InnoDB, an insert on an auto-increment column results in a table lock. Selecting a row FOR UPDATE results in a row level lock.

Since you can't acquire a table lock if there are row locks, the UPDATE prevents the INSERT until its transaction is committed.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.