fix after merge

This commit is contained in:
Giovanni Cuccu
2024-04-20 10:16:59 +02:00
parent 7763efb2b9
commit 8f1409c8a7
3 changed files with 3 additions and 2 deletions

View File

@@ -276,7 +276,7 @@ impl AggregationWithAccessor {
..
})
| ExtendedStats(ExtendedStatsAggregation {
field: field_name, ..
field: ref field_name, ..
})
| Sum(SumAggregation {
field: ref field_name,

View File

@@ -3,7 +3,7 @@ use std::fmt::Debug;
use serde::{Deserialize, Serialize};
use super::IntermediateStats;
use crate::aggregation::*;
/// A single-value metric aggregation that computes the average of numeric values that are
/// extracted from the aggregated documents.
/// See [super::SingleMetricResult] for return value.

View File

@@ -1,3 +1,4 @@
use std::fmt::Debug;
use serde::{Deserialize, Serialize};
use super::*;