1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use super::Function;
use crate::ast::{Column, FunctionType};

/// A representation of the `AVG` function in the database.
#[derive(Debug, Clone, PartialEq)]
pub struct Average<'a> {
    pub(crate) column: Column<'a>,
}

/// Calculates the average value of a numeric column.
pub fn avg<'a, C>(col: C) -> Function<'a>
where
    C: Into<Column<'a>>,
{
    let fun = Average { column: col.into() };
    fun.into()
}

impl<'a> From<Average<'a>> for Function<'a> {
    fn from(value: Average<'a>) -> Self {
        Self {
            typ_: FunctionType::Average(value),
            alias: None,
        }
    }
}