Skip to content

Commit da2debb

Browse files
committed
merge
1 parent 9996f39 commit da2debb

File tree

6 files changed

+103
-899
lines changed

6 files changed

+103
-899
lines changed

x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/aggregation/blockhash/BlockHash.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -146,21 +146,20 @@ public enum OutputFormat {
146146
public record GroupSpec(
147147
int channel,
148148
ElementType elementType,
149-
boolean isCategorize,
150149
@Nullable CategorizeDef categorizeDef,
151150
@Nullable TopNDef topNDef,
152151
@Nullable EmptyBucketGenerator emptyBucketGenerator
153152
) {
154153
public GroupSpec(int channel, ElementType elementType) {
155-
this(channel, elementType, null);
154+
this(channel, elementType, null, null, null);
156155
}
157156

158157
public GroupSpec(int channel, ElementType elementType, CategorizeDef categorizeDef) {
159-
this(channel, elementType, categorizeDef, null);
158+
this(channel, elementType, categorizeDef, null, null);
160159
}
161160

162161
public GroupSpec(int channel, ElementType elementType, EmptyBucketGenerator emptyBucketGenerator) {
163-
this(channel, elementType, false, null, emptyBucketGenerator);
162+
this(channel, elementType, null, null, emptyBucketGenerator);
164163
}
165164

166165
public boolean isCategorize() {

0 commit comments

Comments
 (0)