-
Notifications
You must be signed in to change notification settings - Fork 25
feat: big sum trees and count trees #348
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
Merged
Merged
Changes from all commits
Commits
Show all changes
33 commits
Select commit
Hold shift + click to select a range
0885d05
aggregate sum tree types
QuantumExplorer b3e287b
more work
QuantumExplorer a414fa2
more work
QuantumExplorer 1483e18
more work
QuantumExplorer cac1b37
fmt
QuantumExplorer a46c4da
fixes and tests
QuantumExplorer 3f6705f
added count sum tree
QuantumExplorer 1ba42f5
fixes
QuantumExplorer 7d91f00
more work
QuantumExplorer e2d68fb
cleanup
QuantumExplorer 85aeb8c
cleanup
QuantumExplorer 64f26bf
cleanup
QuantumExplorer 35c64c3
fix
QuantumExplorer 2417f7a
fix
QuantumExplorer 558bd55
added helpers
QuantumExplorer 263dcd5
more fixes
QuantumExplorer a25cc07
better error when key not found
QuantumExplorer 4375da5
feat: append error context (#353)
fominok 8860e6b
Merge remote-tracking branch 'origin/develop' into feat/bigSumTrees
fominok 384894f
merge fixes
fominok 9e313f4
Merge branch 'develop' into feat/bigSumTrees
QuantumExplorer cee2f29
Merge branch 'feat/bigSumTrees' of github.com:dashevo/grovedb into fe…
QuantumExplorer 20705a3
fixes
QuantumExplorer 28ceab5
fixes
QuantumExplorer fcfee9e
fixes
QuantumExplorer 7760e04
fixes
QuantumExplorer 867b476
fixes
QuantumExplorer 4005e34
more refactoring
QuantumExplorer d36c2e8
more refactoring
QuantumExplorer 2f14efb
more refactoring
QuantumExplorer 7dbf367
more refactoring
QuantumExplorer d8ae2d9
more refactoring
QuantumExplorer b7e0cb2
fix
fominok File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,12 @@ | ||
| use versioned_feature_core::FeatureVersion; | ||
|
|
||
| #[derive(Clone, Debug, Default)] | ||
| pub struct MerkVersions {} | ||
| pub struct MerkVersions { | ||
| pub average_case_costs: MerkAverageCaseCostsVersions, | ||
| } | ||
|
|
||
| #[derive(Clone, Debug, Default)] | ||
| pub struct MerkAverageCaseCostsVersions { | ||
| pub add_average_case_merk_propagate: FeatureVersion, | ||
| pub sum_tree_estimated_size: FeatureVersion, | ||
| } |
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,193 @@ | ||
| use crate::version::{ | ||
| grovedb_versions::{ | ||
| GroveDBApplyBatchVersions, GroveDBElementMethodVersions, | ||
| GroveDBOperationsAverageCaseVersions, GroveDBOperationsDeleteUpTreeVersions, | ||
| GroveDBOperationsDeleteVersions, GroveDBOperationsGetVersions, | ||
| GroveDBOperationsInsertVersions, GroveDBOperationsProofVersions, | ||
| GroveDBOperationsQueryVersions, GroveDBOperationsVersions, | ||
| GroveDBOperationsWorstCaseVersions, GroveDBPathQueryMethodVersions, | ||
| GroveDBReplicationVersions, GroveDBVersions, | ||
| }, | ||
| merk_versions::{MerkAverageCaseCostsVersions, MerkVersions}, | ||
| GroveVersion, | ||
| }; | ||
|
|
||
| pub const GROVE_V2: GroveVersion = GroveVersion { | ||
| protocol_version: 1, | ||
| grovedb_versions: GroveDBVersions { | ||
| apply_batch: GroveDBApplyBatchVersions { | ||
| apply_batch_structure: 0, | ||
| apply_body: 0, | ||
| continue_partial_apply_body: 0, | ||
| apply_operations_without_batching: 0, | ||
| apply_batch: 0, | ||
| apply_partial_batch: 0, | ||
| open_batch_transactional_merk_at_path: 0, | ||
| open_batch_merk_at_path: 0, | ||
| apply_batch_with_element_flags_update: 0, | ||
| apply_partial_batch_with_element_flags_update: 0, | ||
| estimated_case_operations_for_batch: 0, | ||
| }, | ||
| element: GroveDBElementMethodVersions { | ||
| delete: 0, | ||
| delete_with_sectioned_removal_bytes: 0, | ||
| delete_into_batch_operations: 0, | ||
| element_at_key_already_exists: 0, | ||
| get: 0, | ||
| get_optional: 0, | ||
| get_from_storage: 0, | ||
| get_optional_from_storage: 1, | ||
| get_with_absolute_refs: 0, | ||
| get_value_hash: 0, | ||
| get_specialized_cost: 0, | ||
| value_defined_cost: 0, | ||
| value_defined_cost_for_serialized_value: 0, | ||
| specialized_costs_for_key_value: 0, | ||
| required_item_space: 0, | ||
| insert: 0, | ||
| insert_into_batch_operations: 0, | ||
| insert_if_not_exists: 0, | ||
| insert_if_not_exists_into_batch_operations: 0, | ||
| insert_if_changed_value: 0, | ||
| insert_if_changed_value_into_batch_operations: 0, | ||
| insert_reference: 0, | ||
| insert_reference_into_batch_operations: 0, | ||
| insert_subtree: 0, | ||
| insert_subtree_into_batch_operations: 0, | ||
| get_query: 0, | ||
| get_query_values: 0, | ||
| get_query_apply_function: 0, | ||
| get_path_query: 0, | ||
| get_sized_query: 0, | ||
| path_query_push: 0, | ||
| query_item: 0, | ||
| basic_push: 0, | ||
| serialize: 0, | ||
| serialized_size: 0, | ||
| deserialize: 0, | ||
| }, | ||
| operations: GroveDBOperationsVersions { | ||
| get: GroveDBOperationsGetVersions { | ||
| get: 0, | ||
| get_caching_optional: 0, | ||
| follow_reference: 0, | ||
| get_raw: 0, | ||
| get_raw_caching_optional: 0, | ||
| get_raw_optional: 0, | ||
| get_raw_optional_caching_optional: 0, | ||
| has_raw: 0, | ||
| check_subtree_exists_invalid_path: 0, | ||
| average_case_for_has_raw: 0, | ||
| average_case_for_has_raw_tree: 0, | ||
| average_case_for_get_raw: 0, | ||
| average_case_for_get: 0, | ||
| average_case_for_get_tree: 0, | ||
| worst_case_for_has_raw: 0, | ||
| worst_case_for_get_raw: 0, | ||
| worst_case_for_get: 0, | ||
| is_empty_tree: 0, | ||
| }, | ||
| insert: GroveDBOperationsInsertVersions { | ||
| insert: 0, | ||
| insert_on_transaction: 0, | ||
| insert_without_transaction: 0, | ||
| add_element_on_transaction: 0, | ||
| add_element_without_transaction: 0, | ||
| insert_if_not_exists: 0, | ||
| insert_if_not_exists_return_existing_element: 0, | ||
| insert_if_changed_value: 0, | ||
| }, | ||
| delete: GroveDBOperationsDeleteVersions { | ||
| delete: 0, | ||
| clear_subtree: 0, | ||
| delete_with_sectional_storage_function: 0, | ||
| delete_if_empty_tree: 0, | ||
| delete_if_empty_tree_with_sectional_storage_function: 0, | ||
| delete_operation_for_delete_internal: 0, | ||
| delete_internal_on_transaction: 0, | ||
| delete_internal_without_transaction: 0, | ||
| average_case_delete_operation_for_delete: 0, | ||
| worst_case_delete_operation_for_delete: 0, | ||
| }, | ||
| delete_up_tree: GroveDBOperationsDeleteUpTreeVersions { | ||
| delete_up_tree_while_empty: 0, | ||
| delete_up_tree_while_empty_with_sectional_storage: 0, | ||
| delete_operations_for_delete_up_tree_while_empty: 0, | ||
| add_delete_operations_for_delete_up_tree_while_empty: 0, | ||
| average_case_delete_operations_for_delete_up_tree_while_empty: 0, | ||
| worst_case_delete_operations_for_delete_up_tree_while_empty: 0, | ||
| }, | ||
| query: GroveDBOperationsQueryVersions { | ||
| query_encoded_many: 0, | ||
| query_many_raw: 0, | ||
| get_proved_path_query: 0, | ||
| query: 0, | ||
| query_item_value: 0, | ||
| query_item_value_or_sum: 0, | ||
| query_sums: 0, | ||
| query_raw: 0, | ||
| query_keys_optional: 0, | ||
| query_raw_keys_optional: 0, | ||
| follow_element: 0, | ||
| }, | ||
| proof: GroveDBOperationsProofVersions { | ||
| prove_query: 0, | ||
| prove_query_many: 0, | ||
| verify_query_with_options: 0, | ||
| verify_query_raw: 0, | ||
| verify_layer_proof: 0, | ||
| verify_query: 0, | ||
| verify_subset_query: 0, | ||
| verify_query_with_absence_proof: 0, | ||
| verify_subset_query_with_absence_proof: 0, | ||
| verify_query_with_chained_path_queries: 0, | ||
| }, | ||
| average_case: GroveDBOperationsAverageCaseVersions { | ||
| add_average_case_get_merk_at_path: 0, | ||
| average_case_merk_replace_tree: 1, // changed | ||
| average_case_merk_insert_tree: 0, | ||
| average_case_merk_delete_tree: 0, | ||
| average_case_merk_insert_element: 0, | ||
| average_case_merk_replace_element: 0, | ||
| average_case_merk_patch_element: 0, | ||
| average_case_merk_delete_element: 0, | ||
| add_average_case_has_raw_cost: 0, | ||
| add_average_case_has_raw_tree_cost: 0, | ||
| add_average_case_get_raw_cost: 0, | ||
| add_average_case_get_raw_tree_cost: 0, | ||
| add_average_case_get_cost: 0, | ||
| }, | ||
| worst_case: GroveDBOperationsWorstCaseVersions { | ||
| add_worst_case_get_merk_at_path: 0, | ||
| worst_case_merk_replace_tree: 0, | ||
| worst_case_merk_insert_tree: 0, | ||
| worst_case_merk_delete_tree: 0, | ||
| worst_case_merk_insert_element: 0, | ||
| worst_case_merk_replace_element: 0, | ||
| worst_case_merk_patch_element: 0, | ||
| worst_case_merk_delete_element: 0, | ||
| add_worst_case_has_raw_cost: 0, | ||
| add_worst_case_get_raw_tree_cost: 0, | ||
| add_worst_case_get_raw_cost: 0, | ||
| add_worst_case_get_cost: 0, | ||
| }, | ||
| }, | ||
| path_query_methods: GroveDBPathQueryMethodVersions { | ||
| terminal_keys: 0, | ||
| merge: 0, | ||
| query_items_at_path: 0, | ||
| }, | ||
| replication: GroveDBReplicationVersions { | ||
| get_subtrees_metadata: 0, | ||
| fetch_chunk: 0, | ||
| start_snapshot_syncing: 0, | ||
| apply_chunk: 0, | ||
| }, | ||
| }, | ||
| merk_versions: MerkVersions { | ||
| average_case_costs: MerkAverageCaseCostsVersions { | ||
| add_average_case_merk_propagate: 1, // changed | ||
| sum_tree_estimated_size: 1, // changed | ||
| }, | ||
| }, | ||
| }; |
Oops, something went wrong.
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.
Uh oh!
There was an error while loading. Please reload this page.