Skip to content

Commit 6401294

Browse files
committed
javadoc for ids
1 parent f57c0c3 commit 6401294

File tree

6 files changed

+18
-0
lines changed

6 files changed

+18
-0
lines changed

x-pack/plugin/esql/compute/src/main/generated-src/org/elasticsearch/compute/aggregation/ValuesBytesRefAggregator.java

Lines changed: 4 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x-pack/plugin/esql/compute/src/main/generated-src/org/elasticsearch/compute/aggregation/ValuesDoubleAggregator.java

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x-pack/plugin/esql/compute/src/main/generated-src/org/elasticsearch/compute/aggregation/ValuesFloatAggregator.java

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x-pack/plugin/esql/compute/src/main/generated-src/org/elasticsearch/compute/aggregation/ValuesIntAggregator.java

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x-pack/plugin/esql/compute/src/main/generated-src/org/elasticsearch/compute/aggregation/ValuesLongAggregator.java

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

x-pack/plugin/esql/compute/src/main/java/org/elasticsearch/compute/aggregation/X-ValuesAggregator.java.st

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -217,6 +217,12 @@ $endif$
217217
* Values are collected in a hash. Iterating over them in order (row by row) to build the output,
218218
* or merging with other state, can be expensive. To optimize this, we build a sorted structure once,
219219
* and then use it to iterate over the values in order.
220+
*
221+
* @param ids positions of the {@link GroupingState#values} to read.
222+
$if(BytesRef)$
223+
* If built from {@link GroupingState#sortedForOrdinalMerging(GroupingState)},
224+
* these are ordinals referring to the {@link GroupingState#bytes} in the target state.
225+
$endif$
220226
*/
221227
private record Sorted(Releasable releasable, int[] counts, int[] ids) implements Releasable {
222228
@Override

0 commit comments

Comments
 (0)