Skip to content
Open
Show file tree
Hide file tree
Changes from 7 commits
Commits
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
235 changes: 235 additions & 0 deletions docs/COUNTED_SKIP_DESIGN.md

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions grovedb/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,13 @@ use grovedb_storage::{Storage, StorageContext};
use grovedb_version::version::GroveVersion;
#[cfg(feature = "minimal")]
use grovedb_visualize::DebugByteVectors;
// Gated on `minimal` alone, matching `operations::indexed_tree` itself: the
// only APIs that produce an `IndexedTopKPage` are the paginated indexed-axis
// reads, which need storage. A verify-only build consumes proofs and can
// never name this type, so widening the gate here to `any(minimal, verify)`
// only breaks that cut on an unresolved import.
#[cfg(feature = "minimal")]
pub use operations::indexed_tree::IndexedTopKPage;
#[cfg(any(feature = "minimal", feature = "verify"))]
Comment thread
shumkov marked this conversation as resolved.
pub use query::{
aggregate_sum_path_query::AggregateSumPathQuery, GroveBranchQueryResult, GroveTrunkQueryResult,
Expand Down
617 changes: 546 additions & 71 deletions grovedb/src/operations/indexed_tree.rs

Large diffs are not rendered by default.

Loading
Loading