From 0381bad421f550d0fb0c0fc92f82a94afb6c8bbd Mon Sep 17 00:00:00 2001 From: Nicolas Grislain Date: Mon, 11 Dec 2023 22:25:46 +0100 Subject: [PATCH] Tests to be fixed --- src/expr/mod.rs | 1 + src/relation/builder.rs | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/src/expr/mod.rs b/src/expr/mod.rs index e8048e9f..e41f3840 100644 --- a/src/expr/mod.rs +++ b/src/expr/mod.rs @@ -1026,6 +1026,7 @@ pub struct SuperImageVisitor<'a>(&'a DataType); impl<'a> Visitor<'a, Result> for SuperImageVisitor<'a> { fn column(&self, column: &'a Column) -> Result { + println!("DEBUG COLUMN {:?}", column); Ok(self.0[column.clone()].clone()) } diff --git a/src/relation/builder.rs b/src/relation/builder.rs index 05d4a8cd..c38d975f 100644 --- a/src/relation/builder.rs +++ b/src/relation/builder.rs @@ -621,7 +621,6 @@ impl Ready for ReduceBuilder { None => self.input.0, }; input.display_dot().unwrap(); - println!("{:?}", reduce.group_by); // Check that the First aggregate columns are in the GROUP BY reduce.named_aggregates.iter() .filter_map(|(_, agg)| matches!(agg.aggregate(), expr::aggregate::Aggregate::First).then_some(agg.column()))