-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Sharded decrypt and uniqueness verification (#1358)
* refactor UniqueBytesValidator to UniqueTagValidator with fixed width array * add implementation of Serializable for UniqueTag * tmp working commit * working commit, all tests passing * remove type aliases because clippy doesn't like them * Update ipa-core/src/query/runner/hybrid.rs Co-authored-by: Alex Koshelev <[email protected]> * fix formatting error * add a ReshardByTag step and narrow to it * do modulo on u128, update compile check for TAG_SIZE * update type signature and name of flatten3v * update test to generate_random_tag directly * reorganize ShardIndex implementations and remove conflicting implementation --------- Co-authored-by: Alex Koshelev <[email protected]>
- Loading branch information
1 parent
4307265
commit 0c276b9
Showing
10 changed files
with
419 additions
and
223 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
use ipa_step_derive::CompactStep; | ||
|
||
#[derive(CompactStep)] | ||
pub(crate) enum HybridStep {} | ||
pub(crate) enum HybridStep { | ||
ReshardByTag, | ||
} |
This file contains 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
Oops, something went wrong.