You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- package themis
-
- import "strings"
-
- var (
- PutFamilyName = []byte("#p")
- DelFamilyName = []byte("#d")
- LockFamilyName = []byte("L")
- )
-
- const (
- ThemisServiceName string = "ThemisService"
- )
-
- func isWrongRegionErr(err error) bool {
- if err != nil {
- return strings.Contains(err.Error(), "org.apache.hadoop.hbase.regionserver.WrongRegionException")
- }
- return false
- }
|