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 compression for tables with large oids #6275

Merged
merged 1 commit into from Nov 4, 2023

Commits on Nov 4, 2023

  1. Fix compression for tables with large oids

    When trying to compress a table with an oid > 2^31 an error about
    bitmapset not allowing negative members would be raised because
    we tried to store the oids in a bitmapset.
    Oids should not be stored in Bitmapsets as storing Oids that way
    is very inefficient and may potentially consume a lot of memory
    depending on the values of the oids. Storing them as list is more
    efficient instead.
    svenklemm committed Nov 4, 2023
    Configuration menu
    Copy the full SHA
    37af08b View commit details
    Browse the repository at this point in the history