We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01fb677 commit b251419Copy full SHA for b251419
1 file changed
datafusion/spark/src/function/string/concat_ws.rs
@@ -22,7 +22,6 @@
22
//! - Allows zero value arguments: `concat_ws(',')` → `""`
23
//! - Null array elements are skipped (same as null scalars)
24
25
-use std::any::Any;
26
use std::sync::Arc;
27
28
use arrow::array::{
@@ -61,10 +60,6 @@ impl SparkConcatWs {
61
60
}
62
63
impl ScalarUDFImpl for SparkConcatWs {
64
- fn as_any(&self) -> &dyn Any {
65
- self
66
- }
67
-
68
fn name(&self) -> &str {
69
"concat_ws"
70
0 commit comments