use std::any::Any;
use std::sync::Arc;
use crate::error::Result;
use crate::physical_plan::{Accumulator, AggregateExpr, PhysicalExpr};
use arrow::{datatypes::DataType, datatypes::Field};
#[derive(Debug)]
pub struct ApproxMedian {
name: String,
expr: Arc<dyn PhysicalExpr>,
data_type: DataType,
}
impl ApproxMedian {
pub fn new(
expr: Arc<dyn PhysicalExpr>,
name: impl Into<String>,
data_type: DataType,
) -> Self {
Self {
name: name.into(),
expr,
data_type,
}
}
}
impl AggregateExpr for ApproxMedian {
fn as_any(&self) -> &dyn Any {
self
}
fn field(&self) -> Result<Field> {
Ok(Field::new(&self.name, self.data_type.clone(), true))
}
fn create_accumulator(&self) -> Result<Box<dyn Accumulator>> {
unimplemented!()
}
fn state_fields(&self) -> Result<Vec<Field>> {
unimplemented!()
}
fn expressions(&self) -> Vec<Arc<dyn PhysicalExpr>> {
vec![self.expr.clone()]
}
fn name(&self) -> &str {
&self.name
}
}