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

Method unmarshal

runtime/vcache/error.go:26–33  ·  view source on GitHub ↗
(cctx *csup.Context, projection field.Projection)

Source from the content-addressed store, hash-verified

24}
25
26func (e *error_) unmarshal(cctx *csup.Context, projection field.Projection) {
27 e.mu.Lock()
28 defer e.mu.Unlock()
29 if e.values == nil {
30 e.values = newShadow(cctx, e.meta.Values)
31 }
32 e.values.unmarshal(cctx, projection)
33}
34
35func (e *error_) project(loader *loader, projection field.Projection) vector.Any {
36 vec := e.values.project(loader, projection)

Callers

nothing calls this directly

Calls 2

newShadowFunction · 0.85
unmarshalMethod · 0.65

Tested by

no test coverage detected