Expand description
Query engine integration for API layer.
This module bridges the storage layer with the query engine, providing optimized query execution using indexes.
Structs§
- Explain
Result - Query plan explanation result.
- Table
Cache Data Source - DataSource implementation for TableCache.
Functions§
- build_
execution_ context - Builds ExecutionContext from TableCache for optimizer.
- compile_
plan - Compiles a logical plan to a physical plan. The physical plan can be cached and reused for repeated executions.
- execute_
physical_ plan - Executes a pre-compiled physical plan. This is faster than execute_plan because it skips optimization.
- execute_
plan - Executes a logical plan using the query engine.
- execute_
plan_ debug - Executes a logical plan with optional debug output.
- explain_
plan - Explains a logical plan by showing the optimization stages.