-
Notifications
You must be signed in to change notification settings - Fork 5
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
feat: [sc-50382] [tables] or [rs] implement accumulating a subarray from the intersection of predicate ranges #133
feat: [sc-50382] [tables] or [rs] implement accumulating a subarray from the intersection of predicate ranges #133
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This all looks fine. The only question I have is why we implemented MultiValue range stuff? I know that I even originally wrote the MultiValueRange and you've just extended this implementation to cover it, but I don't think core supports them?
tiledb/api/src/range.rs
Outdated
B: BitsOrd + ?Sized, | ||
{ | ||
if matches!(left_upper.bits_cmp(right_lower), Ordering::Less) | ||
|| matches!(right_upper.bits_cmp(left_lower), Ordering::Less) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we add an assert for left_lower <= left_upper && right_lower <= right_upper
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.
Added bits_le
, bits_lt
, and etc. and then used those here.
} else { | ||
left_upper | ||
}; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Might also be a good idea to assert lower <= upper
here as well.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done
At this writing I don't think core does, but there may eventually come a time when it does... and we'll be ready That's not a great reason to support it now, so I looked back at #72 to see why you added it, and the best I can tell is that it was because one of the functions ( So I guess it just exists to fill a gap in the API which doesn't show up in practice. |
Story details: https://app.shortcut.com/tiledb-inc/story/50382
I chose to implement the functionality in
rs
since it is sort of generic and it seems plausible that someone somewhere someday might also want it. Side note, I am thinking maybe we should break the range stuff out into a separate crate in the workspace.Anyway...
This pull request implements what is described, alongside a small bit of some extra arithmetic stuff (
MultiValueRange::num_cells
being what comes to mind). A new (possibly redundant?) structSubarrayData
is added to hold the range set for each dimension and is where we implement the critical logic.