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 8112e1a commit 0a0b65bCopy full SHA for 0a0b65b
native/spark-expr/src/conditional_funcs/if_expr.rs
@@ -98,7 +98,7 @@ impl PhysicalExpr for IfExpr {
98
}
99
100
fn nullable(&self, _input_schema: &Schema) -> Result<bool> {
101
- if self.true_expr.nullable(_input_schema)? || self.true_expr.nullable(_input_schema)? {
+ if self.true_expr.nullable(_input_schema)? || self.false_expr.nullable(_input_schema)? {
102
Ok(true)
103
} else {
104
Ok(false)
0 commit comments