If I run ten update queries like this, at the exact same time:
update table set x = x - 1 where x >= 1
Does MySQL, under repeatable-read mode, guarantee that all these update queries are run one at a time, as opposed to in parallel (all at the same time)?
P.S: Does the where clause have any impact on whether it is run in a parallel or sequential style?