sqlite3-parser: box the where clause in Update

This commit is contained in:
Jussi Saurio
2025-02-08 18:08:31 +02:00
parent 7426204204
commit 2a82091cb3
2 changed files with 3 additions and 3 deletions

View File

@@ -256,7 +256,7 @@ pub enum Stmt {
/// `FROM`
from: Option<FromClause>,
/// `WHERE` clause
where_clause: Option<Expr>,
where_clause: Option<Box<Expr>>,
/// `RETURNING`
returning: Option<Vec<ResultColumn>>,
/// `ORDER BY`