This commit is contained in:
chrislu
2025-09-03 08:11:32 -07:00
parent 72d332a352
commit c10a0ba2fd
+5 -5
View File
@@ -71,10 +71,10 @@ type TypeRef struct {
func (d *DDLStatement) isStatement() {}
type SelectStatement struct {
SelectExprs []SelectExpr
From []TableExpr
Where *WhereClause
Limit *LimitClause
SelectExprs []SelectExpr
From []TableExpr
Where *WhereClause
Limit *LimitClause
WindowFunctions []*WindowFunction
}
@@ -98,7 +98,7 @@ type WindowFunction struct {
Function string // ROW_NUMBER, RANK, LAG, LEAD
Args []ExprNode // Function arguments
Over *WindowSpec
Alias string // Column alias for the result
Alias string // Column alias for the result
}
type OrderByClause struct {