From 6c52a063e4bfb8ccdd5dd3db00939fb4fc1147c0 Mon Sep 17 00:00:00 2001 From: liaochuntao Date: Fri, 1 Sep 2023 17:37:40 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=AE=E5=A4=8D=E9=85=8D=E7=BD=AE?= =?UTF-8?q?=E5=8E=86=E5=8F=B2=E5=85=BC=E5=AE=B9=E6=9F=A5=E8=AF=A2=E9=97=AE?= =?UTF-8?q?=E9=A2=98=20(#1230)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- store/mysql/config_file_release_history.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/store/mysql/config_file_release_history.go b/store/mysql/config_file_release_history.go index 2bf840d5c..10b15b052 100644 --- a/store/mysql/config_file_release_history.go +++ b/store/mysql/config_file_release_history.go @@ -113,7 +113,7 @@ func (rh *configFileReleaseHistoryStore) genSelectSql() string { return "SELECT id, name, namespace, `group`, file_name, content, IFNULL(comment, ''), " + " md5, format, tags, type, status, UNIX_TIMESTAMP(create_time), IFNULL(create_by, ''), " + " UNIX_TIMESTAMP(modify_time), IFNULL(modify_by, ''), IFNULL(reason, ''), " + - " IFNULL(description, ''), version FROM config_file_release_history " + " IFNULL(description, ''), IFNULL(version, 0) FROM config_file_release_history " } func (rh *configFileReleaseHistoryStore) transferRows(rows *sql.Rows) ([]*model.ConfigFileReleaseHistory, error) {