Skip to content

Commit

Permalink
sqlparser: check for custom formatters in formatExprs
Browse files Browse the repository at this point in the history
Signed-off-by: Vicent Marti <[email protected]>
  • Loading branch information
vmg committed Feb 3, 2025
1 parent 8a5f060 commit 4299743
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion go/vt/sqlparser/tracked_buffer.go
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ func (buf *TrackedBuffer) formatExprs(exprs []Expr) {
var prefix string
for _, expr := range exprs {
buf.WriteString(prefix)
expr.FormatFast(buf)
buf.formatter(expr)
prefix = ", "
}
}
Expand Down

0 comments on commit 4299743

Please sign in to comment.