//! SQL parser implementation converting a stream of tokens into a fully validated AST.
//!
//! Organized using a trait-based extension pattern where statement categories are parsed
//! in modular submodules. Employs recursive descent for statements and Pratt parsing for operator expressions.
pub use Parser;
pub use ParserError;