Method
Put
(col expr.SchemaInfo, readCtx expr.ContextReader, v value.Value)
Source from the content-addressed store, hash-verified
| 258 | } |
| 259 | |
| 260 | func (n *NestedContextReader) Put(col expr.SchemaInfo, readCtx expr.ContextReader, v value.Value) error { |
| 261 | if n.writer != nil { |
| 262 | return n.writer.Put(col, readCtx, v) |
| 263 | } |
| 264 | return nil |
| 265 | } |
| 266 | func (n *NestedContextReader) Delete(delRow map[string]value.Value) error { |
| 267 | if n.writer != nil { |
| 268 | return n.writer.Delete(delRow) |
Callers
nothing calls this directly
Tested by
no test coverage detected