Skip to content

Commit 72a0667

Browse files
committed
fix(ast): fix gofmt alignment in ArrayJoinClause struct
Remove extra trailing spaces in struct field alignment that gofmt -s flagged. https://claude.ai/code/session_01KHvVJ6V1t2nmkaZQkS5Ge3
1 parent 4542fa8 commit 72a0667

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pkg/sql/ast/ast.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2299,8 +2299,8 @@ func (c ConnectByClause) Children() []Node {
22992299
// ArrayJoinClause represents a ClickHouse ARRAY JOIN or LEFT ARRAY JOIN clause.
23002300
// Syntax: [LEFT] ARRAY JOIN expr [AS alias], expr [AS alias], ...
23012301
type ArrayJoinClause struct {
2302-
Left bool // true for LEFT ARRAY JOIN
2303-
Elements []ArrayJoinElement // One or more join elements
2302+
Left bool // true for LEFT ARRAY JOIN
2303+
Elements []ArrayJoinElement // One or more join elements
23042304
Pos models.Location
23052305
}
23062306

0 commit comments

Comments
 (0)