(name: &'static str, args: Vec<DataType>, return_type: DataType)
| 3599 | } |
| 3600 | |
| 3601 | fn make_udf(name: &'static str, args: Vec<DataType>, return_type: DataType) -> ScalarUDF { |
| 3602 | ScalarUDF::new_from_impl(DummyUDF::new(name, args, return_type)) |
| 3603 | } |
| 3604 | |
| 3605 | /// Mocked UDF |
| 3606 | #[derive(Debug, PartialEq, Eq, Hash)] |
no test coverage detected
searching dependent graphs…