fix(UserMountCache): Set transaction isolation level to REPEATABLE_READ before executing insertIfNotExist without unique index - #56929
Closed
provokateurin wants to merge 2 commits into
Conversation
provokateurin
requested review from
CarlSchwan,
icewind1991,
salmart-dev and
yemkareems
and removed request for
a team
December 9, 2025 09:59
…olation Signed-off-by: provokateurin <kate@provokateurin.de>
…AD before executing insertIfNotExist without unique index Signed-off-by: provokateurin <kate@provokateurin.de>
provokateurin
force-pushed
the
fix/UserMountCache/transaction-isolation-level
branch
from
December 9, 2025 10:20
6bd8f19 to
8fac473
Compare
Contributor
|
Tested it locally like this:
Without this PR With this PR |
provokateurin
marked this pull request as draft
December 9, 2025 12:22
Member
Author
|
This can be used as a patch to mitigate the issue, but the real fix is still under development. |
Member
Author
|
Closing in favor of #56933 |
provokateurin
deleted the
fix/UserMountCache/transaction-isolation-level
branch
December 9, 2025 14:25
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.