From d3c68587df7e658096bccd51b4c81e4bf15539cf Mon Sep 17 00:00:00 2001 From: Lunny Xiao Date: Sun, 19 Jan 2020 20:42:03 +0800 Subject: [PATCH] fix test --- statement.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/statement.go b/statement.go index 75e69f6c..6c0bf8f0 100644 --- a/statement.go +++ b/statement.go @@ -763,7 +763,7 @@ func (statement *Statement) Join(joinOP string, tablename interface{}, condition statement.joinArgs = append(statement.joinArgs, subQueryArgs...) default: tbName := statement.Engine.TableName(tablename, true) - fmt.Fprintf(&buf, "%s ON %v", statement.Engine.Quote(tbName), condition) + fmt.Fprintf(&buf, "%s ON %v", tbName, condition) } statement.JoinStr = buf.String()