Revert "[GITEA] Use join for the deleting issue actions query"
This reverts commit 9b71369be9
.
This commit is contained in:
parent
695fda3dd0
commit
d83135c204
6 changed files with 7 additions and 45 deletions
|
@ -687,22 +687,12 @@ func NotifyWatchersActions(acts []*Action) error {
|
||||||
// DeleteIssueActions delete all actions related with issueID
|
// DeleteIssueActions delete all actions related with issueID
|
||||||
func DeleteIssueActions(ctx context.Context, repoID, issueID int64) error {
|
func DeleteIssueActions(ctx context.Context, repoID, issueID int64) error {
|
||||||
// delete actions assigned to this issue
|
// delete actions assigned to this issue
|
||||||
|
subQuery := builder.Select("`id`").
|
||||||
// MySQL doesn't use the indexes on comment_id when using a subquery.
|
From("`comment`").
|
||||||
// It does uses the indexes when using an JOIN, however SQLite doesn't
|
|
||||||
// allow JOINs in DELETE statements and XORM doesn't allow them as well.
|
|
||||||
// So, an specific raw SQL query for MySQL so the query makes use of indexes.
|
|
||||||
if setting.Database.Type.IsMySQL() {
|
|
||||||
if _, err := db.GetEngine(ctx).Exec("DELETE action FROM action JOIN comment ON action.comment_id = comment.id WHERE comment.issue_id = ?", issueID); err != nil {
|
|
||||||
return err
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
subQuery := builder.Select("`id`").From("`comment`").
|
|
||||||
Where(builder.Eq{"`issue_id`": issueID})
|
Where(builder.Eq{"`issue_id`": issueID})
|
||||||
if _, err := db.GetEngine(ctx).In("comment_id", subQuery).Delete(&Action{}); err != nil {
|
if _, err := db.GetEngine(ctx).In("comment_id", subQuery).Delete(&Action{}); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
_, err := db.GetEngine(ctx).Table("action").Where("repo_id = ?", repoID).
|
_, err := db.GetEngine(ctx).Table("action").Where("repo_id = ?", repoID).
|
||||||
In("op_type", ActionCreateIssue, ActionCreatePullRequest).
|
In("op_type", ActionCreateIssue, ActionCreatePullRequest).
|
||||||
|
|
|
@ -242,15 +242,6 @@ func TestGetFeedsCorrupted(t *testing.T) {
|
||||||
assert.Equal(t, int64(0), count)
|
assert.Equal(t, int64(0), count)
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestDeleteIssueActions(t *testing.T) {
|
|
||||||
assert.NoError(t, unittest.PrepareTestDatabase())
|
|
||||||
|
|
||||||
comment := unittest.AssertExistsAndLoadBean(t, &issue_model.Comment{ID: 8})
|
|
||||||
unittest.AssertExistsAndLoadBean(t, &activities_model.Action{ID: 10, CommentID: comment.ID})
|
|
||||||
assert.NoError(t, activities_model.DeleteIssueActions(db.DefaultContext, 32, 17))
|
|
||||||
unittest.AssertNotExistsBean(t, &activities_model.Action{ID: 10, CommentID: comment.ID})
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestConsistencyUpdateAction(t *testing.T) {
|
func TestConsistencyUpdateAction(t *testing.T) {
|
||||||
if !setting.Database.Type.IsSQLite3() {
|
if !setting.Database.Type.IsSQLite3() {
|
||||||
t.Skip("Test is only for SQLite database.")
|
t.Skip("Test is only for SQLite database.")
|
||||||
|
|
|
@ -73,13 +73,3 @@
|
||||||
is_private: false
|
is_private: false
|
||||||
created_unix: 1680454039
|
created_unix: 1680454039
|
||||||
content: '4|' # issueId 5
|
content: '4|' # issueId 5
|
||||||
|
|
||||||
- id: 10
|
|
||||||
user_id: 15
|
|
||||||
op_type: 10 # issue comment
|
|
||||||
act_user_id: 15
|
|
||||||
repo_id: 32 # public
|
|
||||||
comment_id: 8
|
|
||||||
is_private: false
|
|
||||||
created_unix: 1680454039
|
|
||||||
content: '2|meh...' # issueId 5
|
|
||||||
|
|
|
@ -66,12 +66,3 @@
|
||||||
tree_path: "README.md"
|
tree_path: "README.md"
|
||||||
created_unix: 946684812
|
created_unix: 946684812
|
||||||
invalidated: true
|
invalidated: true
|
||||||
|
|
||||||
-
|
|
||||||
id: 8
|
|
||||||
type: 0 # comment
|
|
||||||
poster_id: 15
|
|
||||||
issue_id: 17 # in repo_id 32
|
|
||||||
content: "meh..."
|
|
||||||
created_unix: 946684812
|
|
||||||
updated_unix: 946684812
|
|
||||||
|
|
|
@ -283,7 +283,7 @@
|
||||||
priority: 0
|
priority: 0
|
||||||
is_closed: false
|
is_closed: false
|
||||||
is_pull: false
|
is_pull: false
|
||||||
num_comments: 1
|
num_comments: 0
|
||||||
created_unix: 1602935696
|
created_unix: 1602935696
|
||||||
updated_unix: 1602935696
|
updated_unix: 1602935696
|
||||||
is_locked: false
|
is_locked: false
|
||||||
|
|
|
@ -35,6 +35,6 @@ func TestNodeinfo(t *testing.T) {
|
||||||
assert.Equal(t, "forgejo", nodeinfo.Software.Name)
|
assert.Equal(t, "forgejo", nodeinfo.Software.Name)
|
||||||
assert.Equal(t, 25, nodeinfo.Usage.Users.Total)
|
assert.Equal(t, 25, nodeinfo.Usage.Users.Total)
|
||||||
assert.Equal(t, 18, nodeinfo.Usage.LocalPosts)
|
assert.Equal(t, 18, nodeinfo.Usage.LocalPosts)
|
||||||
assert.Equal(t, 3, nodeinfo.Usage.LocalComments)
|
assert.Equal(t, 2, nodeinfo.Usage.LocalComments)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue