Skip to content

Commit fdb3959

Browse files
committed
remove print
1 parent 9ea3dce commit fdb3959

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

datafusion/expr/src/type_coercion/functions.rs

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -53,14 +53,6 @@ pub fn data_types(
5353
}
5454
}
5555
let valid_types = get_valid_types(&signature.type_signature, current_types)?;
56-
println!(
57-
"\n ************** \n current types are {:?} \n ************** \n",
58-
current_types
59-
);
60-
println!(
61-
"\n ************** \n valid types are {:?} \n ************** \n",
62-
valid_types
63-
);
6456
if valid_types
6557
.iter()
6658
.any(|data_type| data_type == current_types)
@@ -198,7 +190,6 @@ fn get_valid_types(
198190
// coercible for the arguments. `comparison_coercion` returns more loose
199191
// types that can be coerced to both `acc` and `x` for comparison purpose.
200192
// See `maybe_data_types` for the actual coercion.
201-
println!("acc is {:?}, x is {:?}", acc, x);
202193
let coerced_type = comparison_coercion(&acc, x);
203194
if let Some(coerced_type) = coerced_type {
204195
Ok(coerced_type)
@@ -284,7 +275,6 @@ fn maybe_data_types(
284275
let mut new_type = Vec::with_capacity(valid_types.len());
285276
for (i, valid_type) in valid_types.iter().enumerate() {
286277
let current_type = &current_types[i];
287-
println!("valid type is {:?} and current type is {:?}", valid_type, current_type);
288278
if current_type == valid_type {
289279
new_type.push(current_type.clone())
290280
} else {

0 commit comments

Comments
 (0)