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: add single and mapping struct to integration test for generic extraction (Part 4) #397

Open
wants to merge 24 commits into
base: generic-extraction-row-id-update
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
93c80de
Update integration test for generic extraction.
silathdiir Oct 24, 2024
a2c4cfc
Remove `bit_offset` in API.
silathdiir Nov 7, 2024
d7607cf
Merge remote-tracking branch 'origin/generic-extraction-row-id-update…
silathdiir Nov 7, 2024
51768ea
Merge remote-tracking branch 'origin/generic-extraction-row-id-update…
silathdiir Nov 7, 2024
b33cd73
Combine the single and mapping test cases, and update the merge test …
silathdiir Nov 8, 2024
911aadb
Rename to `ContractController` and update the trait function names.
silathdiir Nov 12, 2024
6b8d4bc
Add TODO to the deprecated `bit_offset`.
silathdiir Nov 12, 2024
e2b717c
Fix the wrong log.
silathdiir Nov 12, 2024
302b17e
Add back the MPT key and ptr check.
silathdiir Nov 12, 2024
6155a66
Fix `last_byte_offset` to not restrict the maximum length.
silathdiir Nov 12, 2024
051bf96
Rename `MetadataGadget` to `ColumnsMetadata`, and leave `build` and `…
silathdiir Nov 12, 2024
c21fe13
Add more common `_raw` functions for the values extraction identifier…
silathdiir Nov 12, 2024
29fd77b
Remove `TableDimension`.
silathdiir Nov 13, 2024
2d1aa8a
Fix the row unique ID always get from the key ID column.
silathdiir Nov 13, 2024
38d6d30
Fix to the value column as the secondary index column in mapping stru…
silathdiir Nov 13, 2024
be3db69
Merge the match arms for mapping update.
silathdiir Nov 14, 2024
973325d
Set to simple rest for the row key.
silathdiir Nov 14, 2024
c423611
Fix the slot checking logic in the storage trie.
silathdiir Nov 14, 2024
50a58d9
Refactor the columns metadata and APIs.
silathdiir Nov 14, 2024
f53f0ee
Fix test.
silathdiir Nov 15, 2024
45deacf
Fix test.
silathdiir Nov 15, 2024
8e1fb40
Merge remote-tracking branch 'origin/generic-extraction-row-id-update…
silathdiir Nov 18, 2024
a22e6d7
Merge remote-tracking branch 'origin/generic-extraction-row-id-update…
silathdiir Dec 13, 2024
47a5784
Merge branch 'generic-extraction-row-id-update' into generic-extracti…
nicholas-mainardi Jan 24, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Merge remote-tracking branch 'origin/generic-extraction-row-id-update…
…' into generic-extraction-integration-test
silathdiir committed Dec 13, 2024
commit a22e6d7c736b79886196429412b053e09ee74c71
2 changes: 1 addition & 1 deletion mp2-v1/tests/common/table.rs
Original file line number Diff line number Diff line change
@@ -110,7 +110,7 @@ impl TableColumns {
.iter()
.chain(once(&self.secondary))
.find(|c| c.identifier() == identifier)
.expect(&format!("can't find cell from identifier {}", identifier))
.unwrap_or_else(|| panic!("can't find cell from identifier {}", identifier))
.clone()
}
pub fn ordered_cells(
You are viewing a condensed version of this merge commit. You can view the full changes here.