| 79 | /// [`advanced_udaf.rs`]: https://github.com/apache/datafusion/blob/main/datafusion-examples/examples/udf/advanced_udaf.rs |
| 80 | #[derive(Debug, Clone, PartialOrd)] |
| 81 | pub struct AggregateUDF { |
| 82 | inner: Arc<dyn AggregateUDFImpl>, |
| 83 | } |
| 84 | |
| 85 | impl PartialEq for AggregateUDF { |
| 86 | fn eq(&self, other: &Self) -> bool { |
no outgoing calls
searching dependent graphs…