Expand description
Unified execution pipeline: SQL text → result.
This is the top-level entry point that replaces the disconnected
three-way split between SqlBridge, SqlExecutor, and SochQlExecutor.
SQL Text → Parser → AST → Planner → Volcano Operator Tree → ExecutionResultStructs§
- Executor
Config - Executor configuration.
Functions§
- execute_
sql - Execute a SQL string against a storage backend, returning the result.
- execute_
sql_ rows - Execute SQL and return rows as Vec<Vec
> (positional). - execute_
statement - Execute a parsed SQL statement against a storage backend.