Skip to content

Commit

Permalink
fix a coding mistake (#11401)
Browse files Browse the repository at this point in the history
Test pass, auto merge by Bot
  • Loading branch information
sre-bot authored Jul 24, 2019
1 parent 136e334 commit 5a5d3d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/http_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -1106,7 +1106,7 @@ func NewFrameItemFromRegionKey(key []byte) (frame *FrameItem, err error) {
}
// bigger than tablePrefix, means is bigger than all tables.
frame.TableID = math.MaxInt64
frame.TableID = math.MaxInt64
frame.IndexID = math.MaxInt64
frame.IsRecord = true
return
}
Expand Down

0 comments on commit 5a5d3d2

Please sign in to comment.