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

erts: Fix crash in ETS compressed tables #8683

Commits on Jul 24, 2024

  1. erts: Fix crash in ETS compressed tables

    The compression was a bit too good, converting ErlSubBits to
    ErlHeapBits whenever that resulted in a smaller result, breaking
    an assumption that ETS compressed tables made:
    
        size_object(original) == size_object(decompressed)
    
    This commit fixes it by not being as clever, naively encoding
    ErlSubBits and the likes as-is regardless of size.
    jhogberg committed Jul 24, 2024
    Configuration menu
    Copy the full SHA
    36dd893 View commit details
    Browse the repository at this point in the history