You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
gitea/vendor/github.com/pingcap/go-themis/consts.go

20 lines
366 B

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
}