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

Function RightJoin

join.go:45–47  ·  view source on GitHub ↗

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

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

Source from the content-addressed store, hash-verified

43// RightJoin the tables.
44// tables[0] is used as reference datatable.
45func RightJoin(tables []*DataTable, on []JoinOn) (*DataTable, error) {
46 return newJoinImpl(rightJoin, tables, on).Compute()
47}
48
49// OuterJoin returns all records when there is a match in either left or right table
50// <!> OuterJoin transforms an expr column to a raw column

Callers

nothing calls this directly

Calls 2

newJoinImplFunction · 0.85
ComputeMethod · 0.80

Tested by

no test coverage detected