Skip to content

Commit f807c63

Browse files
authored
fix: NormalizeNaNAndZero::children() returns child's child (#2732)
1 parent 0a38aae commit f807c63

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

native/spark-expr/src/math_funcs/internal/normalize_nan.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ impl PhysicalExpr for NormalizeNaNAndZero {
9292
}
9393

9494
fn children(&self) -> Vec<&Arc<dyn PhysicalExpr>> {
95-
self.child.children()
95+
vec![&self.child]
9696
}
9797

9898
fn with_new_children(

0 commit comments

Comments
 (0)