sqlite3-parser: box the where clause in Delete

This commit is contained in:
Jussi Saurio
2025-02-08 18:04:39 +02:00
parent a1a9218131
commit 670dac5939
3 changed files with 11 additions and 6 deletions

View File

@@ -168,7 +168,7 @@ pub enum Stmt {
/// `INDEXED`
indexed: Option<Indexed>,
/// `WHERE` clause
where_clause: Option<Expr>,
where_clause: Option<Box<Expr>>,
/// `RETURNING`
returning: Option<Vec<ResultColumn>>,
/// `ORDER BY`