pub const MAX_PARSE_DEPTH: u32 = 1000;Expand description
Maximum expression nesting depth.
Matches C SQLite’s default SQLITE_MAX_EXPR_DEPTH (1000). C SQLite
allows compile-time override; this constant could be made generic or
builder-configurable if needed.