From f7b0eb2df6ba7296c6767f79c4a97d404b7eec28 Mon Sep 17 00:00:00 2001 From: lijianbin <513837235@.qq.com> Date: Thu, 24 Jul 2025 10:51:19 +0800 Subject: [PATCH] =?UTF-8?q?=E5=AE=8C=E5=96=84pgsql=E5=85=B3=E9=94=AE?= =?UTF-8?q?=E6=9B=BF=E6=8D=A2=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/common.go b/common.go index 2cfed53..dd3c320 100644 --- a/common.go +++ b/common.go @@ -2,7 +2,6 @@ package dbquery import ( "git.tetele.net/tgo/helper" - "log" "strings" ) @@ -18,7 +17,5 @@ func SqlReplace(sql_s, sql_type string) string { sql = strings.Replace(sql, " user.", ` "user".`, -1) sql = strings.Replace(sql, "=user.", `="user".`, -1) - log.Println("replace sql:", sql) - return sql }