From 96898dfae68f47b9ae76fd814714a54ea324daaa Mon Sep 17 00:00:00 2001 From: Andres Taylor Date: Mon, 17 Feb 2025 15:45:58 +0100 Subject: [PATCH] remove space Signed-off-by: Andres Taylor --- go/vt/vtgate/executorcontext/vcursor_impl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/go/vt/vtgate/executorcontext/vcursor_impl.go b/go/vt/vtgate/executorcontext/vcursor_impl.go index a4a225608e6..8a73ea74265 100644 --- a/go/vt/vtgate/executorcontext/vcursor_impl.go +++ b/go/vt/vtgate/executorcontext/vcursor_impl.go @@ -219,7 +219,7 @@ func (vc *VCursorImpl) PrepareSetVarComment() string { var res []string vc.Session().GetSystemVariables(func(k, v string) { if sysvars.SupportsSetVar(k) { - res = append(res, fmt.Sprintf("SET_VAR(%s = %s) ", k, v)) + res = append(res, fmt.Sprintf("SET_VAR(%s = %s)", k, v)) } })