Skip to content

Commit

Permalink
fix:修复配置历史兼容查询问题 (#1230)
Browse files Browse the repository at this point in the history
  • Loading branch information
chuntaojun authored Sep 1, 2023
1 parent d19073a commit 6c52a06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion store/mysql/config_file_release_history.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 6c52a06

Please sign in to comment.