feat: check if tuples belongs to same shard before rewriting#1065
Merged
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. 📢 Thoughts on this report? Let us know! |
sgrif
requested changes
Jun 12, 2026
Contributor
|
It would also be nice to have a unit test for this in addition to the integration tests |
Collaborator
|
Agreed. The integration test doesn't assert the changed behavior - it will pass in both scenarios (if the rewrite happened or not). |
Contributor
|
Yeah, now that I think about it I'd just delete the integration test. This is essentially an implementation detail and not something that can be meaningfully tested at the client level |
Contributor
Author
sgrif
approved these changes
Jun 12, 2026
sgrif
left a comment
Contributor
There was a problem hiding this comment.
Don't see anything worth blocking this over
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
fixes #1012
Adds
uniform_shard()helper that iterates the split requests and returnsSome(n)only if every split hasShard::Direct(n)for the samen, otherwiseNone.Testing
added and ran following unit test:
cargo nextest run --profile dev -E 'test(same_shard_insert) | test(cross_shard_insert)'