diff --git a/python/src/lib.rs b/python/src/lib.rs index bfed12bb8b..53efe489f2 100644 --- a/python/src/lib.rs +++ b/python/src/lib.rs @@ -750,7 +750,6 @@ impl RawDeltaTable { }) .map(|(path, f)| { let expression = filestats_to_expression_next(py, &schema, f)?; - println!("path: {:?}", path); Ok((path, expression)) }) .collect() @@ -1120,7 +1119,6 @@ fn scalar_to_py(value: &Scalar, py_date: &PyAny, py: Python) -> PyResult { let value = value.serialize(); - println!("timestamp: {}", value); value.to_object(py) } // NOTE: PyArrow 13.0.0 lost the ability to cast from string to date32, so @@ -1179,7 +1177,6 @@ fn filestats_to_expression_next<'py>( }; if let Ok(partitions_values) = file_info.partition_values() { - println!("partition_values: {:?}", partitions_values); for (column, value) in partitions_values.iter() { let column = column.to_string(); if !value.is_null() {