MCPcopy
hub / github.com/databasus/databasus / String

Method String

backend/internal/util/walmath/lsn.go:10–12  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

8type LSN uint64
9
10func (lsn LSN) String() string {
11 return fmt.Sprintf("%X/%X", uint32(lsn>>32), uint32(lsn))
12}
13
14func ParseLSN(s string) (LSN, error) {
15 var hi, lo uint32

Calls

no outgoing calls