Skip to content

Commit

Permalink
fix a coding mistake (#11393)
Browse files Browse the repository at this point in the history
  • Loading branch information
foreyes authored Jul 24, 2019
1 parent 05f66f4 commit 99e4dd4
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 @@ -1155,7 +1155,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 99e4dd4

Please sign in to comment.