for a given SQL row, the fkValuesRecorder records mappings from its foreign key target columns to the blank node of the row
| 82 | // for a given SQL row, the fkValuesRecorder records mappings from its foreign key target columns to |
| 83 | // the blank node of the row |
| 84 | type fkValuesRecorder struct { |
| 85 | refToBlank map[string]string |
| 86 | } |
| 87 | |
| 88 | func (r *fkValuesRecorder) getBlankNode(indexLabel string) string { |
| 89 | return r.refToBlank[indexLabel] |
nothing calls this directly
no outgoing calls
no test coverage detected