From 2d937728fac74e4ea7b488734ddb50dbcafafc9c Mon Sep 17 00:00:00 2001 From: reesporte <45641995+reesporte@users.noreply.github.com> Date: Thu, 26 May 2022 09:33:43 -0500 Subject: [PATCH] remove vestigial print statement (#2080) --- executor.go | 1 - 1 file changed, 1 deletion(-) diff --git a/executor.go b/executor.go index 7a81bfc1c..a92aaf86d 100644 --- a/executor.go +++ b/executor.go @@ -6778,7 +6778,6 @@ func (e *executor) translateCall(c *pql.Call, index string, columnKeys map[strin // Translate child calls. for i, child := range c.Children { - fmt.Printf("translating call: %s\n", child) translated, err := e.translateCall(child, index, columnKeys, rowKeys) if err != nil { return nil, err