sql_cli/sql/mod.rs
1//! SQL parsing, execution, and optimization
2//!
3//! This module handles all SQL-related functionality including
4//! parsing, query optimization, execution, and caching.
5
6pub mod aggregates;
7pub mod cache;
8pub mod cursor_aware_parser;
9pub mod functions;
10pub mod hybrid_parser;
11pub mod parser;
12pub mod recursive_parser;
13pub mod script_parser;
14pub mod smart_parser;
15pub mod sql_highlighter;
16pub mod where_ast;
17pub mod where_parser;
18pub mod window_context;