We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 589cddd commit cab15c0Copy full SHA for cab15c0
datafusion/expr/src/udf.rs
@@ -547,13 +547,6 @@ pub trait ScalarUDFImpl: Debug + DynEq + DynHash + Send + Sync {
547
/// * `Some(ScalarUDF)` - A new instance of this function configured with the new settings
548
/// * `None` - If this function does not support runtime reconfiguration
549
///
550
- /// # Example
551
- ///
552
- /// ```ignore
553
- /// fn with_updated_config(&self, config: &ConfigOptions) -> Option<ScalarUDF> {
554
- /// Some(MyConfigDependentFunc::new_with_config(config).into())
555
- /// }
556
- /// ```
557
fn with_updated_config(&self, _config: &ConfigOptions) -> Option<ScalarUDF> {
558
None
559
}
0 commit comments