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

Method String

utils/reader.go:196–200  ·  view source on GitHub ↗

String reads a string.

()

Source from the content-addressed store, hash-verified

194
195// String reads a string.
196func (reader *Reader) String() string {
197 length := reader.VariableUint()
198 reader.offset += length
199 return string(reader.buf[reader.offset-length : reader.offset])
200}
201
202// Id reads an internal ID.
203func (reader *Reader) Id() id.Id {

Callers 15

IdMethod · 0.95
StringSliceMethod · 0.95
StringMapMethod · 0.95
TestWriterReaderFunction · 0.95
DeserializeTriggerFunction · 0.95
DeserializeFunctionFunction · 0.95
DeserializeConflictFunction · 0.95
DeserializeExtensionFunction · 0.95
DeserializeSequenceFunction · 0.95
DeserializeProcedureFunction · 0.95
deserializeTypeVarCharFunction · 0.95
DeserializeTypeFunction · 0.95

Calls 1

VariableUintMethod · 0.95

Tested by 1

TestWriterReaderFunction · 0.76