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

Function OuterJoin

join.go:57–59  ·  view source on GitHub ↗

OuterJoin the tables. tables[0] is used as reference datatable.

(tables []*DataTable, on []JoinOn)

Source from the content-addressed store, hash-verified

55// OuterJoin the tables.
56// tables[0] is used as reference datatable.
57func OuterJoin(tables []*DataTable, on []JoinOn) (*DataTable, error) {
58 return newJoinImpl(outerJoin, tables, on).Compute()
59}
60
61type JoinOn struct {
62 Table string

Callers

nothing calls this directly

Calls 2

newJoinImplFunction · 0.85
ComputeMethod · 0.80

Tested by

no test coverage detected