sqlite_diff_rs/builders/sql.rs
1//! Simplified SQL parser for changeset/patchset operations.
2//!
3//! A lightweight parser that handles only `INSERT`, `UPDATE`, and `DELETE`
4//! statements, which is all the round-trip path needs. A full SQL parser like
5//! `sqlparser` would be overkill.
6
7mod lexer;
8mod parser;
9
10pub use parser::ParseError;
11pub(crate) use parser::Parser;