From a05d554ccd3d0c460b56aa75361c6f3a207aef65 Mon Sep 17 00:00:00 2001 From: Tanjin Xu Date: Wed, 22 Jan 2025 13:05:33 -0800 Subject: [PATCH] fix compile error --- go/vt/sqlparser/ast_format_fast.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/vt/sqlparser/ast_format_fast.go b/go/vt/sqlparser/ast_format_fast.go index e1f6a9cd3b1..c3f19314ee9 100644 --- a/go/vt/sqlparser/ast_format_fast.go +++ b/go/vt/sqlparser/ast_format_fast.go @@ -2055,7 +2055,7 @@ func (node *WeightStringFuncExpr) FormatFast(buf *TrackedBuffer) { } // formatFast formats the node. -func (node *CurTimeFuncExpr) formatFast(buf *TrackedBuffer) { +func (node *CurTimeFuncExpr) FormatFast(buf *TrackedBuffer) { if node.Fsp != nil { buf.WriteString(node.Name.String()) buf.WriteByte('(')