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 hybrid_parser;
12pub mod parser;
13pub mod recursive_parser;
14pub mod script_parser;
15pub mod smart_parser;
16pub mod sql_highlighter;
17pub mod where_ast;
18pub mod where_parser;
19pub mod window_context;
20pub mod window_functions;