未验证 提交 8b40d226 编写于 作者: Y yangyiweigege 提交者: GitHub

Fix SumAggregationBuilder#build should use the SumAggregation rather than...

Fix SumAggregationBuilder#build should use the SumAggregation rather than MaxAggregation.(#9111) (#9114)
Co-authored-by: Nxishui <xishui@wacai.com>
上级 47509715
......@@ -64,6 +64,7 @@
* [Breaking Change] SQL Database: move `Tags list` from `Segment`,`Logs`,`Alarms` to their additional table.
* [Breaking Change] Remove `total` field in Trace, Log, Event, Browser log, and alarm list query.
* Support `OFF_CPU` eBPF Profiling.
* Fix SumAggregationBuilder#build should use the SumAggregation rather than MaxAggregation.
#### UI
......
......@@ -37,7 +37,7 @@ public final class SumAggregationBuilder implements AggregationBuilder {
}
@Override
public MaxAggregation build() {
return new MaxAggregation(name, field);
public SumAggregation build() {
return new SumAggregation(name, field);
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册