diff options
author | Lunny Xiao <xiaolunwen@gmail.com> | 2017-09-25 12:59:27 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-09-25 12:59:27 +0800 |
commit | dd55534b82ca9527b68fddf0f63ebb13c105c466 (patch) | |
tree | 5e1398ac3d07da8b7e4cb4fdd52695cea19b62b7 /models/issue_user.go | |
parent | 6b6f16cfae5636deb88003fc5b0290450afb4137 (diff) | |
download | gitea-dd55534b82ca9527b68fddf0f63ebb13c105c466.tar.gz gitea-dd55534b82ca9527b68fddf0f63ebb13c105c466.zip |
Reduce usage of allcols on update (#2596)
* reduce usage of allcols on update
* fix bug and tests
Diffstat (limited to 'models/issue_user.go')
-rw-r--r-- | models/issue_user.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/models/issue_user.go b/models/issue_user.go index 11d47dd0a6..e0110e6dc5 100644 --- a/models/issue_user.go +++ b/models/issue_user.go @@ -101,7 +101,7 @@ func UpdateIssueUsersByMentions(e Engine, issueID int64, uids []int64) error { iu.IsMentioned = true if has { - _, err = e.Id(iu.ID).AllCols().Update(iu) + _, err = e.Id(iu.ID).Cols("is_mentioned").Update(iu) } else { _, err = e.Insert(iu) } |