(i FieldIndex)
| 230 | panic("unimplemented") |
| 231 | } |
| 232 | func (r dummyRecord) Get(i FieldIndex) []byte { |
| 233 | v, ok := r[i] |
| 234 | if !ok { |
| 235 | return make([]byte, 0) |
| 236 | } |
| 237 | return []byte(v) |
| 238 | } |
| 239 | func (r dummyRecord) Set(i FieldIndex, b []byte) { |
| 240 | r[i] = string(b) |
| 241 | } |
nothing calls this directly
no outgoing calls
no test coverage detected