Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion grovedb/src/debugger.rs
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ fn query_to_grovedb(query: Query) -> crate::Query {
query.conditional_subquery_branches,
),
left_to_right: query.left_to_right,
add_parent_tree_on_subquery: false,
add_parent_tree_on_subquery: query.add_parent_tree_on_subquery,
}
}

Expand Down
5 changes: 3 additions & 2 deletions grovedb/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -243,8 +243,9 @@ use grovedb_version::version::GroveVersion;
use grovedb_visualize::DebugByteVectors;
#[cfg(any(feature = "minimal", feature = "verify"))]
pub use query::{
aggregate_sum_path_query::AggregateSumPathQuery, GroveBranchQueryResult, GroveTrunkQueryResult,
LeafInfo, PathBranchChunkQuery, PathQuery, PathTrunkChunkQuery, SizedQuery,
aggregate_sum_path_query::AggregateSumPathQuery, AggregateKind, GroveBranchQueryResult,
GroveTrunkQueryResult, LeafInfo, PathBranchChunkQuery, PathQuery, PathQueryShape,
PathTrunkChunkQuery, SizedQuery,
};
#[cfg(feature = "minimal")]
use reference_path::path_from_reference_path_type;
Expand Down
3 changes: 3 additions & 0 deletions grovedb/src/query/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ mod grove_branch_query_result;
mod grove_trunk_query_result;
mod path_branch_chunk_query;
mod path_trunk_chunk_query;
mod shape;

use std::{
borrow::{Cow, Cow::Borrowed},
Expand All @@ -28,6 +29,8 @@ use indexmap::IndexMap;
pub use path_branch_chunk_query::PathBranchChunkQuery;
#[cfg(any(feature = "minimal", feature = "verify"))]
pub use path_trunk_chunk_query::PathTrunkChunkQuery;
#[cfg(any(feature = "minimal", feature = "verify"))]
pub use shape::{AggregateKind, PathQueryShape};

use crate::operations::proof::util::hex_to_ascii;

Expand Down
Loading
Loading