Skip to content

Commit

Permalink
removed redundant getBlocks method
Browse files Browse the repository at this point in the history
  • Loading branch information
vikasgupta78 committed Mar 5, 2024
1 parent 7206bd7 commit fcb9e2b
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,13 +49,7 @@ public ZFrame<D,R,C> getBlocked( ZFrame<D,R,C> testData) throws Exception, Zin
ZFrame<D,R,C> blocked1 = blocked.repartition(args.getNumPartitions(), blocked.col(ColName.HASH_COL)); //.cache();
return blocked1;
}



public ZFrame<D,R,C> getBlocks(ZFrame<D,R,C>blocked) throws Exception{
return getDSUtil().joinWithItself(blocked, ColName.HASH_COL, true).cache();
}

public ZFrame<D,R,C> getBlocks(ZFrame<D,R,C>blocked, ZFrame<D,R,C>bAll) throws Exception{
ZFrame<D,R,C>joinH = getDSUtil().joinWithItself(blocked, ColName.HASH_COL, true).cache();
/*ZFrame<D,R,C>joinH = blocked.as("first").joinOnCol(blocked.as("second"), ColName.HASH_COL)
Expand Down

0 comments on commit fcb9e2b

Please sign in to comment.