Skip to content

Commit

Permalink
fix incorrect results
Browse files Browse the repository at this point in the history
  • Loading branch information
Baunsgaard committed Jul 26, 2023
1 parent 35ac14d commit a4a499a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public static CompressedSizeInfo findCoCodesByPartitioning(AComEst est, Compress
final int nRow = groups.get(0).getNumRows();

// filter groups
for(int i = groups.size() - 1; i > 0; i--) {
for(int i = groups.size() - 1; i >= 0; i--) {
CompressedSizeInfoColGroup g = groups.get(i);
if(g.isEmpty()) {
emptyCols.add(g.getColumns());
Expand Down

0 comments on commit a4a499a

Please sign in to comment.