sqlite3-parser: box the having clause in GroupBy

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

View File

@@ -1005,7 +1005,7 @@ pub struct GroupBy {
/// expressions
pub exprs: Vec<Expr>,
/// `HAVING`
pub having: Option<Expr>, // HAVING clause on a non-aggregate query
pub having: Option<Box<Expr>>, // HAVING clause on a non-aggregate query
}
/// identifier or one of several keywords or `INDEXED`