forked from go-gitea/gitea
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add unique index for project_issue to prevent duplicate data (go-gite…
…a#30190) Fix go-gitea#27639
- Loading branch information
1 parent
8aa37df
commit e29ae64
Showing
5 changed files
with
133 additions
and
0 deletions.
There are no files selected for viewing
9 changes: 9 additions & 0 deletions
9
models/migrations/fixtures/Test_AddUniqueIndexForProjectIssue/project_issue.yml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
- | ||
id: 1 | ||
project_id: 1 | ||
issue_id: 1 | ||
|
||
- | ||
id: 2 | ||
project_id: 1 | ||
issue_id: 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// Copyright 2024 The Gitea Authors. All rights reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
package v1_23 //nolint | ||
|
||
import ( | ||
"testing" | ||
|
||
"code.gitea.io/gitea/models/migrations/base" | ||
) | ||
|
||
func TestMain(m *testing.M) { | ||
base.MainTest(m) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
// Copyright 2024 The Gitea Authors. All rights reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
package v1_23 //nolint | ||
|
||
import ( | ||
"fmt" | ||
|
||
"xorm.io/xorm" | ||
"xorm.io/xorm/schemas" | ||
) | ||
|
||
// AddUniqueIndexForProjectIssue adds unique indexes for project issue table | ||
func AddUniqueIndexForProjectIssue(x *xorm.Engine) error { | ||
// remove possible duplicated records in table project_issue | ||
type result struct { | ||
IssueID int64 | ||
ProjectID int64 | ||
Cnt int | ||
} | ||
var results []result | ||
if err := x.Select("issue_id, project_id, count(*) as cnt"). | ||
Table("project_issue"). | ||
GroupBy("issue_id, project_id"). | ||
Having("count(*) > 1"). | ||
Find(&results); err != nil { | ||
return err | ||
} | ||
for _, r := range results { | ||
if x.Dialect().URI().DBType == schemas.MSSQL { | ||
if _, err := x.Exec(fmt.Sprintf("delete from project_issue where id in (SELECT top %d id FROM project_issue WHERE issue_id = ? and project_id = ?)", r.Cnt-1), r.IssueID, r.ProjectID); err != nil { | ||
return err | ||
} | ||
} else { | ||
var ids []int64 | ||
if err := x.SQL("SELECT id FROM project_issue WHERE issue_id = ? and project_id = ? limit ?", r.IssueID, r.ProjectID, r.Cnt-1).Find(&ids); err != nil { | ||
return err | ||
} | ||
if _, err := x.Table("project_issue").In("id", ids).Delete(); err != nil { | ||
return err | ||
} | ||
} | ||
} | ||
|
||
// add unique index for project_issue table | ||
type ProjectIssue struct { //revive:disable-line:exported | ||
ID int64 `xorm:"pk autoincr"` | ||
IssueID int64 `xorm:"INDEX unique(s)"` | ||
ProjectID int64 `xorm:"INDEX unique(s)"` | ||
} | ||
|
||
return x.Sync(new(ProjectIssue)) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
// Copyright 2024 The Gitea Authors. All rights reserved. | ||
// SPDX-License-Identifier: MIT | ||
|
||
package v1_23 //nolint | ||
|
||
import ( | ||
"slices" | ||
"testing" | ||
|
||
"code.gitea.io/gitea/models/migrations/base" | ||
|
||
"github.com/stretchr/testify/assert" | ||
"xorm.io/xorm/schemas" | ||
) | ||
|
||
func Test_AddUniqueIndexForProjectIssue(t *testing.T) { | ||
type ProjectIssue struct { //revive:disable-line:exported | ||
ID int64 `xorm:"pk autoincr"` | ||
IssueID int64 `xorm:"INDEX"` | ||
ProjectID int64 `xorm:"INDEX"` | ||
} | ||
|
||
// Prepare and load the testing database | ||
x, deferable := base.PrepareTestEnv(t, 0, new(ProjectIssue)) | ||
defer deferable() | ||
if x == nil || t.Failed() { | ||
return | ||
} | ||
|
||
cnt, err := x.Table("project_issue").Where("project_id=1 AND issue_id=1").Count() | ||
assert.NoError(t, err) | ||
assert.EqualValues(t, 2, cnt) | ||
|
||
assert.NoError(t, AddUniqueIndexForProjectIssue(x)) | ||
|
||
cnt, err = x.Table("project_issue").Where("project_id=1 AND issue_id=1").Count() | ||
assert.NoError(t, err) | ||
assert.EqualValues(t, 1, cnt) | ||
|
||
tables, err := x.DBMetas() | ||
assert.NoError(t, err) | ||
assert.EqualValues(t, 1, len(tables)) | ||
found := false | ||
for _, index := range tables[0].Indexes { | ||
if index.Type == schemas.UniqueType { | ||
found = true | ||
slices.Equal(index.Cols, []string{"project_id", "issue_id"}) | ||
break | ||
} | ||
} | ||
assert.True(t, found) | ||
} |