MCPcopy Create free account
hub / github.com/IceFireDB/IceFireDB / Decode

Method Decode

IceFireDB-SQLite/pkg/mysql/mysql/mysql_gtid.go:283–289  ·  view source on GitHub ↗
(data []byte)

Source from the content-addressed store, hash-verified

281}
282
283func (s *UUIDSet) Decode(data []byte) error {
284 n, err := s.decode(data)
285 if n != len(data) {
286 return errors.Errorf("invalid uuid set buffer, must %d, but %d", n, len(data))
287 }
288 return err
289}
290
291func (s *UUIDSet) Clone() *UUIDSet {
292 clone := new(UUIDSet)

Callers 6

handleAuthResultMethod · 0.45
TestMysqlGTIDCodecMethod · 0.45
getPublicKeyFromCertFunction · 0.45
handleMethod · 0.45
handleMethod · 0.45

Calls 1

decodeMethod · 0.95

Tested by 1

TestMysqlGTIDCodecMethod · 0.36