formatting and tests

This commit is contained in:
phiresky 2020-12-18 13:53:13 +01:00
parent eff747b756
commit 9d2e936eb8

View File

@ -911,7 +911,7 @@ mod test {
struct Count; struct Count;
impl Aggregate<i64, Option<i64>> for Sum { impl Aggregate<i64, Option<i64>> for Sum {
fn init(&self) -> i64 { fn init(&self, _: &mut Context<'_>) -> i64 {
0 0
} }
@ -920,13 +920,13 @@ mod test {
Ok(()) Ok(())
} }
fn finalize(&self, sum: Option<i64>) -> Result<Option<i64>> { fn finalize(&self, _: &mut Context<'_>, sum: Option<i64>) -> Result<Option<i64>> {
Ok(sum) Ok(sum)
} }
} }
impl Aggregate<i64, i64> for Count { impl Aggregate<i64, i64> for Count {
fn init(&self) -> i64 { fn init(&self, _: &mut Context<'_>) -> i64 {
0 0
} }
@ -935,7 +935,7 @@ mod test {
Ok(()) Ok(())
} }
fn finalize(&self, sum: Option<i64>) -> Result<i64> { fn finalize(&self, _: &mut Context<'_>, sum: Option<i64>) -> Result<i64> {
Ok(sum.unwrap_or(0)) Ok(sum.unwrap_or(0))
} }
} }