Skip to content

Commit f451006

Browse files
committed
style
1 parent bffe2d2 commit f451006

File tree

5 files changed

+30
-5
lines changed

5 files changed

+30
-5
lines changed

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

Lines changed: 6 additions & 1 deletion
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/RateFloatAggregator.java

Lines changed: 6 additions & 1 deletion
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/RateIntAggregator.java

Lines changed: 6 additions & 1 deletion
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/RateLongAggregator.java

Lines changed: 6 additions & 1 deletion
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-RateAggregator.java.st

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -392,7 +392,12 @@ public class Rate$Type$Aggregator {
392392
int len = state.entries();
393393
final double rate;
394394
if (evalContext instanceof TimeSeriesGroupingAggregatorEvaluationContext tsContext) {
395-
rate = extrapolateRate(state, tsContext.rangeStartInMillis(groupId), tsContext.rangeEndInMillis(groupId), unitInMillis);
395+
rate = extrapolateRate(
396+
state,
397+
tsContext.rangeStartInMillis(groupId),
398+
tsContext.rangeEndInMillis(groupId),
399+
unitInMillis
400+
);
396401
} else {
397402
rate = computeRateWithoutExtrapolate(state, unitInMillis);
398403
}

0 commit comments

Comments
 (0)