Skip to content

Commit

Permalink
br: fix backup client (#41295) (#41304)
Browse files Browse the repository at this point in the history
ref #40404, ref #40898
  • Loading branch information
ti-chi-bot committed Feb 12, 2023
1 parent 8e794e4 commit eed05a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions br/pkg/backup/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -566,7 +566,7 @@ func BuildBackupRangeAndSchema(
var globalAutoID int64
switch {
case tableInfo.IsSequence():
globalAutoID, err = autoIDAccess.SequenceCycle().Get()
globalAutoID, err = autoIDAccess.SequenceValue().Get()
case tableInfo.IsView() || !utils.NeedAutoID(tableInfo):
// no auto ID for views or table without either rowID nor auto_increment ID.
default:
Expand Down Expand Up @@ -841,7 +841,7 @@ func (bc *Client) BackupRange(
} else {
for _, store := range allStores {
for _, label := range store.Labels {
if val, ok := replicaReadLabel[label.Key]; !ok && val == label.Value {
if val, ok := replicaReadLabel[label.Key]; ok && val == label.Value {
targetStores = append(targetStores, store) // send backup push down request to stores that match replica read label
targetStoreIds[store.GetId()] = struct{}{} // record store id for fine grained backup
}
Expand Down

0 comments on commit eed05a5

Please sign in to comment.