Expand description
Range execution paths for the count query.
Three executors all keyed on a range_countable: true index:
DriveDocumentCountQuery::execute_range_count_no_proof— Rust- side walk of the property-nameProvableCountTree’s children, returning per-(in_key, key) entries (or a single sum) without a proof.DriveDocumentCountQuery::execute_aggregate_count_with_proof— grovedbAggregateCountOnRangeproof, returning a single u64.DriveDocumentCountQuery::execute_distinct_count_with_proof— regular range proof against theProvableCountTree, returning per-keyKVCountops bound to the merk root.
Point-lookup execution (Equal/In with no range) lives in
super::execute_point_lookup.
Whole module is gated feature = "server" via the parent’s
pub mod execute_range_count; declaration.
Structs§
- Range
Count Options - Pagination + ordering knobs for
execute_range_count_no_proof.