RightJoin the tables. tables[0] is used as reference datatable.
(tables []*DataTable, on []JoinOn)
| 43 | // RightJoin the tables. |
| 44 | // tables[0] is used as reference datatable. |
| 45 | func 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 |
nothing calls this directly
no test coverage detected