sqlite3-parser: box Following and Preceding in FrameBound

This commit is contained in:
Jussi Saurio
2025-02-08 18:07:38 +02:00
parent ac7f9d67b7
commit 7426204204
2 changed files with 4 additions and 4 deletions

View File

@@ -1872,9 +1872,9 @@ pub enum FrameBound {
/// `CURRENT ROW`
CurrentRow,
/// `FOLLOWING`
Following(Expr),
Following(Box<Expr>),
/// `PRECEDING`
Preceding(Expr),
Preceding(Box<Expr>),
/// `UNBOUNDED FOLLOWING`
UnboundedFollowing,
/// `UNBOUNDED PRECEDING`