-
-
Notifications
You must be signed in to change notification settings - Fork 5.8k
Fix commit status index problem #17061
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
1b2e083
Fix commit status index problem
lunny bd5947a
remove unused functions
lunny 0068d74
Add fixture and test for migration
lunny 26c02e7
Fix lint
lunny 09cf742
Fix fixture
lunny 32e6f99
Fix lint
lunny c82dde9
Fix test
lunny 5ada23f
Fix bug
lunny ebaa9a6
Fix bug
lunny File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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,5 @@ | ||
- | ||
id: 1 | ||
repo_id: 1 | ||
sha: "1234123412341234123412341234123412341234" | ||
max_index: 5 |
This file contains hidden or 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 hidden or 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,47 @@ | ||
// Copyright 2021 The Gitea Authors. All rights reserved. | ||
// Use of this source code is governed by a MIT-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package migrations | ||
|
||
import ( | ||
"fmt" | ||
|
||
"xorm.io/xorm" | ||
) | ||
|
||
func addTableCommitStatusIndex(x *xorm.Engine) error { | ||
// CommitStatusIndex represents a table for commit status index | ||
type CommitStatusIndex struct { | ||
ID int64 | ||
RepoID int64 `xorm:"unique(repo_sha)"` | ||
SHA string `xorm:"unique(repo_sha)"` | ||
MaxIndex int64 `xorm:"index"` | ||
} | ||
lunny marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
if err := x.Sync2(new(CommitStatusIndex)); err != nil { | ||
return fmt.Errorf("Sync2: %v", err) | ||
} | ||
|
||
sess := x.NewSession() | ||
defer sess.Close() | ||
|
||
if err := sess.Begin(); err != nil { | ||
return err | ||
} | ||
|
||
// Remove data we're goint to rebuild | ||
if _, err := sess.Table("commit_status_index").Where("1=1").Delete(&CommitStatusIndex{}); err != nil { | ||
return err | ||
} | ||
|
||
// Create current data for all repositories with issues and PRs | ||
if _, err := sess.Exec("INSERT INTO commit_status_index (repo_id, sha, max_index) " + | ||
"SELECT max_data.repo_id, max_data.sha, max_data.max_index " + | ||
"FROM ( SELECT commit_status.repo_id AS repo_id, commit_status.sha AS sha, max(commit_status.`index`) AS max_index " + | ||
"FROM commit_status GROUP BY commit_status.repo_id, commit_status.sha) AS max_data"); err != nil { | ||
return err | ||
} | ||
|
||
return sess.Commit() | ||
} |
This file contains hidden or 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,62 @@ | ||
// Copyright 2021 The Gitea Authors. All rights reserved. | ||
// Use of this source code is governed by a MIT-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package migrations | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func Test_addTableCommitStatusIndex(t *testing.T) { | ||
// Create the models used in the migration | ||
type CommitStatus struct { | ||
ID int64 `xorm:"pk autoincr"` | ||
Index int64 `xorm:"INDEX UNIQUE(repo_sha_index)"` | ||
RepoID int64 `xorm:"INDEX UNIQUE(repo_sha_index)"` | ||
SHA string `xorm:"VARCHAR(64) NOT NULL INDEX UNIQUE(repo_sha_index)"` | ||
} | ||
|
||
// Prepare and load the testing database | ||
x, deferable := prepareTestEnv(t, 0, new(CommitStatus)) | ||
if x == nil || t.Failed() { | ||
defer deferable() | ||
return | ||
} | ||
defer deferable() | ||
|
||
// Run the migration | ||
if err := addTableCommitStatusIndex(x); err != nil { | ||
assert.NoError(t, err) | ||
return | ||
} | ||
|
||
type CommitStatusIndex struct { | ||
ID int64 | ||
RepoID int64 `xorm:"unique(repo_sha)"` | ||
SHA string `xorm:"unique(repo_sha)"` | ||
MaxIndex int64 `xorm:"index"` | ||
} | ||
|
||
var start = 0 | ||
const batchSize = 1000 | ||
for { | ||
var indexes = make([]CommitStatusIndex, 0, batchSize) | ||
err := x.Table("commit_status_index").Limit(batchSize, start).Find(&indexes) | ||
assert.NoError(t, err) | ||
|
||
for _, idx := range indexes { | ||
var maxIndex int | ||
has, err := x.SQL("SELECT max(`index`) FROM commit_status WHERE repo_id = ? AND sha = ?", idx.RepoID, idx.SHA).Get(&maxIndex) | ||
assert.NoError(t, err) | ||
assert.True(t, has) | ||
assert.EqualValues(t, maxIndex, idx.MaxIndex) | ||
} | ||
if len(indexes) < batchSize { | ||
break | ||
} | ||
start += len(indexes) | ||
} | ||
} |
This file contains hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.