2021-06-14 02:22:55 +00:00
|
|
|
// Copyright 2021 The Gitea Authors. All rights reserved.
|
2022-11-27 18:20:29 +00:00
|
|
|
// SPDX-License-Identifier: MIT
|
2021-06-14 02:22:55 +00:00
|
|
|
|
2022-11-02 08:54:36 +00:00
|
|
|
package v1_15 //nolint
|
2021-06-14 02:22:55 +00:00
|
|
|
|
|
|
|
import (
|
|
|
|
"xorm.io/xorm"
|
|
|
|
)
|
|
|
|
|
2022-11-02 08:54:36 +00:00
|
|
|
func AddIssueResourceIndexTable(x *xorm.Engine) error {
|
2021-06-14 02:22:55 +00:00
|
|
|
type ResourceIndex struct {
|
2021-08-25 08:42:51 +00:00
|
|
|
GroupID int64 `xorm:"pk"`
|
|
|
|
MaxIndex int64 `xorm:"index"`
|
2021-06-14 02:22:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sess := x.NewSession()
|
|
|
|
defer sess.Close()
|
|
|
|
|
|
|
|
if err := sess.Begin(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-08-13 19:17:21 +00:00
|
|
|
if err := sess.Table("issue_index").Sync(new(ResourceIndex)); err != nil {
|
2021-06-14 02:22:55 +00:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Remove data we're goint to rebuild
|
|
|
|
if _, err := sess.Table("issue_index").Where("1=1").Delete(&ResourceIndex{}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Create current data for all repositories with issues and PRs
|
|
|
|
if _, err := sess.Exec("INSERT INTO issue_index (group_id, max_index) " +
|
|
|
|
"SELECT max_data.repo_id, max_data.max_index " +
|
|
|
|
"FROM ( SELECT issue.repo_id AS repo_id, max(issue.`index`) AS max_index " +
|
|
|
|
"FROM issue GROUP BY issue.repo_id) AS max_data"); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return sess.Commit()
|
|
|
|
}
|