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

Method Pull

sbuf/materialize.go:25–32  ·  view source on GitHub ↗
(done bool)

Source from the content-addressed store, hash-verified

23}
24
25func (m *Materializer) Pull(done bool) (Batch, error) {
26 vec, err := m.parent.Pull(done)
27 vec, _ = vector.Unlabel(vec)
28 if vec == nil || err != nil {
29 return nil, err
30 }
31 return Materialize(vec), nil
32}
33
34func Materialize(vec vector.Any) Batch {
35 if vec == nil {

Callers

nothing calls this directly

Calls 3

UnlabelFunction · 0.92
MaterializeFunction · 0.85
PullMethod · 0.65

Tested by

no test coverage detected