llkv-executor 0.6.0-alpha

Query execution engine for the LLKV toolkit.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Type definitions for the executor.
//!
//! This module contains the core types used throughout the executor, including:
//! - Table and schema representations
//! - Column metadata
//! - Result types (RowBatch)
//! - Provider trait for table access

pub mod executor_types;
pub mod provider;

pub use executor_types::{
    ExecutorColumn, ExecutorMultiColumnUnique, ExecutorRowBatch, ExecutorSchema, ExecutorTable,
};
pub use provider::ExecutorTableProvider;