fix(UserMountCache): Set transaction isolation level to REPEATABLE_READ before executing insertIfNotExist without unique index #56929
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
oc_mountsno longer has a unique index since #32877, so theinsertIfNotExistdoes not work properly and depends on consistent reads always getting the same data, which is not possible withREAD_COMMITTED(https://dev.mysql.com/doc/refman/9.2/en/innodb-transaction-isolation-levels.html).The proper fix is to add back the unique index, but with a hash of the mountpoint column (which was too long for the index and was the reason the unique index was removed). This type of workaround is already used for the
share_externaltable.All other
insertIfNotExistin server are fine, because they operate on tables with a unique index.