MCPcopy Create free account
hub / github.com/brimdata/super / readUncomp

Method readUncomp

cmd/super/dev/dig/frames/command.go:184–193  ·  view source on GitHub ↗
(code byte)

Source from the content-addressed store, hash-verified

182}
183
184func (r *reader) readUncomp(code byte) (any, error) {
185 size, err := r.readLength(code)
186 if err != nil {
187 return 0, err
188 }
189 return &UncompressedBlock{
190 Type: "uncompressed",
191 Length: int64(size),
192 }, r.skip(size)
193}
194
195func (r *reader) readComp(code byte) (any, error) {
196 zlen, err := r.readLength(code)

Callers 1

nextFrameMethod · 0.80

Calls 2

readLengthMethod · 0.95
skipMethod · 0.95

Tested by

no test coverage detected