We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6c29a5a commit a0763dbCopy full SHA for a0763db
1 file changed
datafusion/functions-nested/src/array_compact.rs
@@ -32,6 +32,7 @@ use datafusion_expr::{
32
Volatility,
33
};
34
use datafusion_macros::user_doc;
35
+use std::any::Any;
36
use std::sync::Arc;
37
38
make_udf_expr_and_func!(
@@ -85,6 +86,10 @@ impl ScalarUDFImpl for ArrayCompact {
85
86
"array_compact"
87
}
88
89
+ fn as_any(&self) -> &dyn Any {
90
+ self
91
+ }
92
+
93
fn signature(&self) -> &Signature {
94
&self.signature
95
0 commit comments