Skip to content

Commit

Permalink
chores: remove unnecessary debug code
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonLi-cn committed Oct 25, 2024
1 parent ab2a4f5 commit fdc0d42
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions datafusion/optimizer/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,12 +149,8 @@ pub fn is_restrict_null_predicate<'a>(
.map(|column| (column, &null_column))
.collect::<HashMap<_, _>>();

debug!("predicate: {}", &predicate);
let replaced_predicate = replace_col(predicate, &join_cols_to_replace)?;
debug!("replaced_predicate: {}", &replaced_predicate);
let coerced_predicate = coerce(replaced_predicate, &input_schema)?;
debug!("coerced_predicate: {}", &coerced_predicate);

let phys_expr =
create_physical_expr(&coerced_predicate, &input_schema, &execution_props)?;

Expand Down

0 comments on commit fdc0d42

Please sign in to comment.