// Copyright (c) 2024-2025 DeepGraph Inc.
// SPDX-License-Identifier: Apache-2.0
//
//! Query execution engine
//!
//! This module provides the execution engine that takes physical query plans
//! and executes them against graph storage to produce query results.
// Phase 4: Week 6.5 - Memory Optimization
// Text search not supported in GraphLite
// pub mod text_search_iterator; // Phase 4: Week 6.5 - Lazy text search
// Phase 4: Week 6.5 - Streaming top-K // Phase 4: Week 6.5 - Memory limit enforcement
// Re-export the main types for convenience
pub use ExecutionContext;
pub use ExecutionError;
pub use ;
pub use ;
// Text search not supported in GraphLite
// pub use text_search_iterator::TextSearchIterator;