From 2b56633c3993aaf2cb06e5147d2afbc61c8401cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Toma=C5=BE=20Jerman?= Date: Fri, 26 Feb 2021 18:05:02 +0100 Subject: [PATCH] Remove leftover debugging things --- store/rdbms/builders/cursor.go | 4 ---- 1 file changed, 4 deletions(-) diff --git a/store/rdbms/builders/cursor.go b/store/rdbms/builders/cursor.go index 5875f536c..9d0b618b9 100644 --- a/store/rdbms/builders/cursor.go +++ b/store/rdbms/builders/cursor.go @@ -3,8 +3,6 @@ package builders import ( "fmt" "reflect" - - "github.com/davecgh/go-spew/spew" ) type ( @@ -157,7 +155,6 @@ func (c *cursorCondition) sql() (cnd string, err error) { // Typecast the value so comparasement can work properly vc := fmt.Sprintf(km.TypeCastPtrn, "?") - spew.Dump("lt", lt) base := fmt.Sprintf(baseTpl, km.FieldCast, notOp[!lt], isNull(i, lt), km.TypeCast, op, vc) if cnd == "" { @@ -168,6 +165,5 @@ func (c *cursorCondition) sql() (cnd string, err error) { } } - spew.Dump(cnd) return }