//! The SQL expression parser is used by the `sql_expr!` macro to compile a SQL expression into programm code.
//!//! The parser is written with [Pest](https://pest.rs/).
externcrate pest;#[macro_use]externcrate pest_derive;#[derive(Parser)]#[grammar="sql_expr.pest"]pubstructPestSqlExprParser;