From 8f8399942b92602306f22d007583f86f2d2bcdde Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Wed, 1 May 2024 01:20:45 +0200 Subject: [PATCH] wip --- lib/logstorage/pipe_stats.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/logstorage/pipe_stats.go b/lib/logstorage/pipe_stats.go index 8c8746c98..b4e598155 100644 --- a/lib/logstorage/pipe_stats.go +++ b/lib/logstorage/pipe_stats.go @@ -72,7 +72,7 @@ func (ps *pipeStats) String() string { } a := make([]string, len(ps.funcs)) for i, f := range ps.funcs { - a[i] = f.String() + " as " + ps.resultNames[i] + a[i] = f.String() + " as " + quoteTokenIfNeeded(ps.resultNames[i]) } s += strings.Join(a, ", ") return s