Skip to content

Commit

Permalink
Fixed bug in union/unionall
Browse files Browse the repository at this point in the history
  • Loading branch information
vpinna80 committed Nov 29, 2023
1 parent f00337c commit 525653d
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -326,10 +326,10 @@ public <TT> DataSet analytic(SerFunction<DataPoint, Lineage> lineageOp,
}

@Override
public DataSet union(SerFunction<DataPoint, Lineage> lineageOp, List<DataSet> others, boolean unionAll)
public DataSet union(SerFunction<DataPoint, Lineage> lineageOp, List<DataSet> others, boolean check)
{
// Fast track when the functional aspect is preserved
if (unionAll)
if (!check)
return new AbstractDataSet(dataStructure) {
private static final long serialVersionUID = 1L;

Expand Down

0 comments on commit 525653d

Please sign in to comment.