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

sql/distsqlrun: use FastIntSet to track unmatched right-side rows #21303

Merged

Commits on Jan 7, 2018

  1. sql/distsqlrun: use FastIntSet to track unmatched right-side rows

    Replace `[]bool` with `FastIntSet` for tracking unmatched right-side
    rows. The `FastIntSet` will avoid an allocation for the common case of
    less than 64 rows on the right-side.
    
    This only affects right and full outer joins.
    
    Fixes cockroachdb#21269
    
    Release note: None
    petermattis committed Jan 7, 2018
    Configuration menu
    Copy the full SHA
    6bc0de0 View commit details
    Browse the repository at this point in the history