Pinch
Pinch

Reputation: 2888

Mysql repeatable read-your-own-write behavior

If my isolation level is repeatable read, and I have a transaction with 3 statements:

Will the last select statement see the change made by the second statement?

Upvotes: 2

Views: 281

Answers (1)

Gleb Egunov
Gleb Egunov

Reputation: 309

Yes, of course! All transactions always see its own changes, no matter which isolation level they have.

Upvotes: 1

Related Questions