| 3336 | #[allow(clippy::derived_hash_with_manual_eq)] |
| 3337 | #[derive(Debug, Clone, Eq, Hash)] |
| 3338 | pub struct Extension { |
| 3339 | /// The runtime extension operator |
| 3340 | pub node: Arc<dyn UserDefinedLogicalNode>, |
| 3341 | } |
| 3342 | |
| 3343 | // `PartialEq` cannot be derived for types containing `Arc<dyn Trait>`. |
| 3344 | // This manual implementation should be removed if |
no outgoing calls
searching dependent graphs…