Skip to content

Commit

Permalink
fix: Fix wrong children expression order in IfExpr
Browse files Browse the repository at this point in the history
  • Loading branch information
viirya committed Apr 9, 2024
1 parent 59f535c commit dd2009d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/execution/datafusion/expressions/if_expr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,8 @@ impl PhysicalExpr for IfExpr {

fn children(&self) -> Vec<Arc<dyn PhysicalExpr>> {
vec![
self.true_expr.clone(),
self.if_expr.clone(),
self.true_expr.clone(),
self.false_expr.clone(),
]
}
Expand Down

0 comments on commit dd2009d

Please sign in to comment.