diff --git a/be/src/query.rs b/be/src/query.rs index 7cc8318..67b2038 100644 --- a/be/src/query.rs +++ b/be/src/query.rs @@ -650,8 +650,9 @@ impl UserQuery { fn validate_function(&mut self, function: &mut ast::Function) -> Result<(), api::Error> { let name = function.name.to_string().to_lowercase(); - const VALID_FUNCS: [&str; 15] = [ + const VALID_FUNCS: [&str; 16] = [ "coalesce", + "avg", "min", "max", "sum",