(&self)
| 253 | |
| 254 | impl DocProvider for AggregateUDF { |
| 255 | fn get_name(&self) -> String { |
| 256 | self.name().to_string() |
| 257 | } |
| 258 | fn get_aliases(&self) -> Vec<String> { |
| 259 | self.aliases().iter().map(|a| a.to_string()).collect() |
| 260 | } |
no test coverage detected