We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 23bea07 commit 831435bCopy full SHA for 831435b
2 files changed
vortex-array/src/stats/stats_set.rs
@@ -116,10 +116,6 @@ impl StatsSet {
116
self.get(stat).map(|v| {
117
v.map(|v| {
118
T::try_from(&Scalar::new(dtype.clone(), v)).unwrap_or_else(|err| {
119
- println!(
120
- "Failed to get stat {stat} as {} - {err}",
121
- std::any::type_name::<T>()
122
- );
123
vortex_panic!(
124
err,
125
"Failed to get stat {} as {}",
vortex-datafusion/src/persistent/format.rs
@@ -293,8 +293,6 @@ impl FileFormat for VortexFormat {
293
acc.zip(stats_set).map(|(acc, stats_set)| acc + stats_set)
294
});
295
296
- println!("Found total byte size: {:?}", total_byte_size);
297
-
298
// Sum up the total byte size across all the columns.
299
let total_byte_size = total_byte_size.to_df();
300
0 commit comments