Skip to content

Commit

Permalink
block vector
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisHegarty committed Oct 2, 2023
1 parent b1b13a6 commit 2ab12a1
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,8 @@ public void add(Page page, GroupingAggregatorFunction.AddInput addInput) {
addInput.add(0, groupIds);
}
} else {
try (IntVector groupIds = add(vector)) {
addInput.add(0, groupIds);
try (IntBlock groupIds = add(vector).asBlock()) {
addInput.add(0, groupIds.asVector());
}
}
}
Expand Down

0 comments on commit 2ab12a1

Please sign in to comment.