MCPcopy Create free account
hub / github.com/dolthub/doltgresql / ReadString

Method ReadString

utils/wirerw.go:116–118  ·  view source on GitHub ↗

ReadString reads the next N bytes as a string.

(n uint32)

Source from the content-addressed store, hash-verified

114
115// ReadString reads the next N bytes as a string.
116func (rw *WireRW) ReadString(n uint32) string {
117 return string(rw.ReadBytes(n))
118}
119
120// ReadBytes reads the next N bytes.
121func (rw *WireRW) ReadBytes(n uint32) []byte {

Callers 1

nextRowMethod · 0.80

Calls 1

ReadBytesMethod · 0.95

Tested by

no test coverage detected