//! SQL Engine — semantic analysis layer for completion, diagnostics, and validation.
//!
//! Sits between core (adapter trait, models) and UI (rendering, events).
//! Pure SQL analysis: no UI imports, no database I/O.
use Error;
pub type EngineResult<T> = ;