datafold 0.1.55

A personal database for data sovereignty with AI-powered ingestion
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Query Module - Dedicated query processing for FoldDB
//!
//! This module contains all query-related functionality extracted from the main FoldDB core,
//! providing a clean separation of concerns for query operations.

pub mod formatter;
pub mod hash_range_query;
pub mod query_executor;

// Re-export main query functionality
pub use formatter::{
    format_hash_range_fields, records_from_field_map, FieldMetadata, QueryResultRecord, Record,
};
pub use hash_range_query::HashRangeQueryProcessor;
pub use query_executor::QueryExecutor;