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 query_rewriter;
15pub mod recursive_parser;
16pub mod script_parser;
17pub mod smart_parser;
18pub mod sql_highlighter;
19pub mod where_ast;
20pub mod where_parser;
21pub mod window_context;
22pub mod window_functions;