diff --git a/datafusion/physical-expr/src/functions.rs b/datafusion/physical-expr/src/functions.rs index 7c8a80458e62..0e12718dbc37 100644 --- a/datafusion/physical-expr/src/functions.rs +++ b/datafusion/physical-expr/src/functions.rs @@ -241,14 +241,8 @@ where arg.clone().into_array(expansion_len) }) .collect::>>()?; - use std::any::type_name_of_val; - fn print_type_of(val: &T) { - println!("The type of the variable is: {}", type_name_of_val(val)); - } - print_type_of(&args); let result = (inner)(&args); - print_type_of(&result); if is_scalar { // If all inputs are scalar, keeps output as scalar let result = result.and_then(|arr| ScalarValue::try_from_array(&arr, 0));