-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix formatting + improve comments in GroupBy.{h,cpp}
- Loading branch information
Hannah Bast
committed
Jan 4, 2025
1 parent
896df47
commit bbed6e7
Showing
2 changed files
with
20 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
// Copyright 2018, University of Freiburg, | ||
// Copyright 2018 - 2024, University of Freiburg | ||
// Chair of Algorithms and Data Structures. | ||
// Author: | ||
// 2018 Florian Kramer ([email protected]) | ||
// 2020- Johannes Kalmbach ([email protected]) | ||
// Authors: Florian Kramer [2018] | ||
// Johannes Kalmbach <[email protected]> | ||
|
||
#pragma once | ||
|
||
|
@@ -317,8 +316,7 @@ class GroupBy : public Operation { | |
// and subsequently calling `createResultFromHashMap`. | ||
template <size_t NUM_GROUP_COLUMNS> | ||
Result computeGroupByForHashMapOptimization( | ||
std::vector<HashMapAliasInformation>& aggregateAliases, | ||
auto subresults, | ||
std::vector<HashMapAliasInformation>& aggregateAliases, auto subresults, | ||
const std::vector<size_t>& columnIndices) const; | ||
|
||
using AggregationData = | ||
|