(&self, name: &str)
| 1420 | } |
| 1421 | |
| 1422 | fn get_aggregate_meta(&self, name: &str) -> Option<Arc<AggregateUDF>> { |
| 1423 | match name { |
| 1424 | "sum" => Some(datafusion_functions_aggregate::sum::sum_udaf()), |
| 1425 | _ => None, |
| 1426 | } |
| 1427 | } |
| 1428 | |
| 1429 | fn get_variable_type(&self, _variable_names: &[String]) -> Option<DataType> { |
| 1430 | None |
no outgoing calls
no test coverage detected