LeftJoin the tables. tables[0] is used as reference datatable.
(tables []*DataTable, on []JoinOn)
| 30 | // LeftJoin the tables. |
| 31 | // tables[0] is used as reference datatable. |
| 32 | func LeftJoin(tables []*DataTable, on []JoinOn) (*DataTable, error) { |
| 33 | return newJoinImpl(leftJoin, tables, on).Compute() |
| 34 | } |
| 35 | |
| 36 | // RightJoin returns all records from the right table (table2), and the matched records from the left table (table1). |
| 37 | // The result is NULL from the left side, when there is no match. |
nothing calls this directly
no test coverage detected