From c10a0ba2fdc2bf9983b59cde4c346a08ca2213c1 Mon Sep 17 00:00:00 2001 From: chrislu Date: Wed, 3 Sep 2025 08:11:32 -0700 Subject: [PATCH] fmt --- weed/query/engine/engine.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/weed/query/engine/engine.go b/weed/query/engine/engine.go index 4b07acf45..3343d7979 100644 --- a/weed/query/engine/engine.go +++ b/weed/query/engine/engine.go @@ -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 {