Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix reading strings from the hash index overflow file #2918

Merged
merged 1 commit into from
Feb 20, 2024

Commits on Feb 20, 2024

  1. Fix reading strings from the hash index overflow file

    When there is multi-threaded contention, data was being appended to the
    result multiple times because of how optimisticRead behaves.
    Replacing the relevant portion of the string instead of appending makes
    sure that the result is correct and overwrites the null data from
    previous runs when the optimisticRead finally manages a successful read.
    
    Fixes #2916
    benjaminwinger committed Feb 20, 2024
    Configuration menu
    Copy the full SHA
    e091497 View commit details
    Browse the repository at this point in the history