(DDF anotherDDF, JoinType joinType, List<String> byColumns, List<String> byLeftColumns,
List<String> byRightColumns)
| 464 | } |
| 465 | |
| 466 | public DDF join(DDF anotherDDF, JoinType joinType, List<String> byColumns, List<String> byLeftColumns, |
| 467 | List<String> byRightColumns) throws DDFException { |
| 468 | return this.getJoinsHandler().join(anotherDDF, joinType, byColumns, byLeftColumns, byRightColumns); |
| 469 | } |
| 470 | |
| 471 | public DDF join(DDF anotherDDF, JoinType joinType, List<String> byColumns, List<String> byLeftColumns, |
| 472 | List<String> byRightColumns, String leftSuffix, String rightSuffix) throws DDFException { |
nothing calls this directly
no test coverage detected