Skip to main content

Module pipeline

Module pipeline 

Source
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 → ExecutionResult

Structs§

ExecutorConfig
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.