Skip to content

Commit

Permalink
remove println
Browse files Browse the repository at this point in the history
  • Loading branch information
andygrove committed May 6, 2022
1 parent 1979238 commit 0637a38
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions datafusion/core/src/sql/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -213,10 +213,6 @@ pub(crate) fn check_columns_satisfy_exprs(
"Expr::Column are required".to_string(),
)),
})?;

println!("check_columns_satisfy_exprs columns = {:?}", columns);
println!("check_columns_satisfy_exprs exprs = {:?}", exprs);

let column_exprs = find_column_exprs(exprs);
for e in &column_exprs {
match e {
Expand All @@ -240,9 +236,6 @@ pub(crate) fn check_columns_satisfy_exprs(
_ => check_column_satisfies_expr(columns, e, message_prefix)?,
}
}

println!("check_columns_satisfy_exprs exprs OK");

Ok(())
}

Expand Down

0 comments on commit 0637a38

Please sign in to comment.