MCPcopy Create free account
hub / github.com/datasweet/datatable / initColMapper

Method initColMapper

join.go:236–244  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

234}
235
236func (j *joinImpl) initColMapper() {
237 mcols := make(map[string][]string)
238 for _, t := range j.tables {
239 for _, name := range t.cols {
240 mcols[name.name] = append(mcols[name.name], t.Name())
241 }
242 }
243 j.mcols = mcols
244}
245
246func (j *joinImpl) join(left, right *DataTable) (*DataTable, error) {
247 if left == nil {

Callers 1

ComputeMethod · 0.95

Calls 1

NameMethod · 0.65

Tested by

no test coverage detected