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