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 aggregate_functions;
7pub mod aggregates;
8pub mod cache;
9pub mod cursor_aware_parser;
10pub mod functions;
11pub mod generators;
12pub mod hybrid_parser;
13pub mod parser;
14pub mod recursive_parser;
15pub mod script_parser;
16pub mod smart_parser;
17pub mod sql_highlighter;
18pub mod where_ast;
19pub mod where_parser;
20pub mod window_context;
21pub mod window_functions;