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: synchronize lazy ResultSet decoding #3267

Merged
merged 1 commit into from
Aug 22, 2024

Commits on Aug 12, 2024

  1. fix: synchronize lazy ResultSet decoding

    Using one of the options DecodeMode.LAZY_PER_ROW or DecodeMode.LAZY_PER_COLUMN
    in combination with multi-threaded access to the ResultSet could lead to
    ClassCastExceptions, as the underlying decode methods were not synchronized.
    This could lead to multiple threads trying to access either the raw proto data
    or the decoded data at the same time, and expecting to get the other type of
    data.
    olavloite committed Aug 12, 2024
    Configuration menu
    Copy the full SHA
    175ddb8 View commit details
    Browse the repository at this point in the history