Skip to content

Commit

Permalink
chore: remove accidental printlins (#3845)
Browse files Browse the repository at this point in the history
found a couple printlns that were left from dev/debugging.
  • Loading branch information
universalmind303 authored Feb 21, 2025
1 parent 501d7f8 commit 6da99df
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
2 changes: 0 additions & 2 deletions src/daft-core/src/array/ops/comparison.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2110,8 +2110,6 @@ impl DaftCompare<&Self> for FixedSizeBinaryArray {
}

fn eq_null_safe(&self, rhs: &Self) -> Self::Output {
println!("Starting eq_null_safe for DaftCompare<&Self> for FixedSizeBinaryArray");

match (self.len(), rhs.len()) {
(x, y) if x == y => {
let l_validity = self.as_arrow().validity();
Expand Down
1 change: 0 additions & 1 deletion src/daft-logical-plan/src/builder/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,6 @@ impl LogicalPlanBuilder {

let predicate = expr_resolver.resolve_single(predicate, self.plan.clone())?;

println!("resolved predicate: {predicate:?}");
let logical_plan: LogicalPlan = ops::Filter::try_new(self.plan.clone(), predicate)?.into();
Ok(self.with_new_plan(logical_plan))
}
Expand Down

0 comments on commit 6da99df

Please sign in to comment.