Skip to content

Commit

Permalink
Formatting change.
Browse files Browse the repository at this point in the history
  • Loading branch information
bziobrowski committed Jan 9, 2025
1 parent 017a1bc commit c06caef
Showing 1 changed file with 10 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,15 +70,16 @@ public class MultistageGroupByExecutor {
// because they use the zero based integer indexes to store results.
private final GroupIdGenerator _groupIdGenerator;

public MultistageGroupByExecutor(int[] groupKeyIds,
AggregationFunction[] aggFunctions,
int[] filterArgIds,
int maxFilterArgId,
AggType aggType,
boolean leafReturnFinalResult,
DataSchema resultSchema,
Map<String, String> opChainMetadata,
@Nullable PlanNode.NodeHint nodeHint) {
public MultistageGroupByExecutor(
int[] groupKeyIds,
AggregationFunction[] aggFunctions,
int[] filterArgIds,
int maxFilterArgId,
AggType aggType,
boolean leafReturnFinalResult,
DataSchema resultSchema,
Map<String, String> opChainMetadata,
@Nullable PlanNode.NodeHint nodeHint) {
_groupKeyIds = groupKeyIds;
_aggFunctions = aggFunctions;
_filterArgIds = filterArgIds;
Expand Down

0 comments on commit c06caef

Please sign in to comment.