mirror of
https://github.com/linux-do/new-api.git
synced 2025-09-18 00:16:37 +08:00
fix: sqlite too many SQL variables
This commit is contained in:
parent
79010dbfc5
commit
1e9d64fd19
@ -56,6 +56,11 @@ func getPriority(group string, model string, retry int) (int, error) {
|
|||||||
return 0, err
|
return 0, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if len(priorities) == 0 {
|
||||||
|
// 如果没有查询到优先级,则返回错误
|
||||||
|
return 0, errors.New("数据库一致性被破坏")
|
||||||
|
}
|
||||||
|
|
||||||
// 确定要使用的优先级
|
// 确定要使用的优先级
|
||||||
var priorityToUse int
|
var priorityToUse int
|
||||||
if retry >= len(priorities) {
|
if retry >= len(priorities) {
|
||||||
@ -199,7 +204,7 @@ func FixAbility() (int, error) {
|
|||||||
|
|
||||||
// Use channelIds to find channel not in abilities table
|
// Use channelIds to find channel not in abilities table
|
||||||
var abilityChannelIds []int
|
var abilityChannelIds []int
|
||||||
err = DB.Model(&Ability{}).Pluck("channel_id", &abilityChannelIds).Error
|
err = DB.Table("abilities").Distinct("channel_id").Pluck("channel_id", &abilityChannelIds).Error
|
||||||
if err != nil {
|
if err != nil {
|
||||||
common.SysError(fmt.Sprintf("Get channel ids from abilities table failed: %s", err.Error()))
|
common.SysError(fmt.Sprintf("Get channel ids from abilities table failed: %s", err.Error()))
|
||||||
return 0, err
|
return 0, err
|
||||||
|
Loading…
Reference in New Issue
Block a user