core: Drop Clone and PartialEq from Func enum

We don't need them anywhere and they make it hard to introduce
GenericFunction.
This commit is contained in:
Pekka Enberg 2024-12-28 10:23:21 +02:00
parent dca47f62ea
commit 858aecfea2

View file

@ -255,7 +255,7 @@ impl Display for MathFunc {
}
}
#[derive(Debug, Clone, PartialEq)]
#[derive(Debug)]
pub enum Func {
Agg(AggFunc),
Scalar(ScalarFunc),