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

Function newJoinImpl

join.go:183–189  ·  view source on GitHub ↗
(mode joinType, tables []*DataTable, on []JoinOn)

Source from the content-addressed store, hash-verified

181}
182
183func newJoinImpl(mode joinType, tables []*DataTable, on []JoinOn) *joinImpl {
184 return &joinImpl{
185 mode: mode,
186 tables: tables,
187 on: on,
188 }
189}
190
191func (j *joinImpl) Compute() (*DataTable, error) {
192 if err := j.checkInput(); err != nil {

Callers 8

InnerJoinMethod · 0.85
InnerJoinFunction · 0.85
LeftJoinMethod · 0.85
LeftJoinFunction · 0.85
RightJoinMethod · 0.85
RightJoinFunction · 0.85
OuterJoinMethod · 0.85
OuterJoinFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected