Skip to content
This repository has been archived by the owner on Jan 7, 2025. It is now read-only.

Commit

Permalink
remove debug println
Browse files Browse the repository at this point in the history
  • Loading branch information
connortsui20 committed Dec 18, 2024
1 parent 9d8ee74 commit a4af10f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions optd-core/src/cascades/optimizer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -261,10 +261,10 @@ impl<T: NodeType, M: Memo<T>> CascadesOptimizer<T, M> {
let plan_space = self.memo.estimated_plan_space();
if let Some(partial_explore_space) = self.prop.partial_explore_space {
if plan_space - plan_space_begin > partial_explore_space {
println!(
"plan space size budget used, not applying logical rules any more. current plan space: {}",
plan_space
);
// println!(
// "plan space size budget used, not applying logical rules any more. current plan space: {}",
// plan_space
// );
self.ctx.budget_used = true;
if self.prop.panic_on_budget {
panic!("plan space size budget used");
Expand Down

0 comments on commit a4af10f

Please sign in to comment.