Skip to content

Commit d0d50f5

Browse files
committed
remove prints
1 parent 9479b2b commit d0d50f5

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

datafusion/physical-plan/src/recursive_query.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,8 +137,6 @@ impl ExecutionPlan for RecursiveQueryExec {
137137
self: Arc<Self>,
138138
children: Vec<Arc<dyn ExecutionPlan>>,
139139
) -> Result<Arc<dyn ExecutionPlan>> {
140-
println!("with_new_children, children.len() = {}", children.len());
141-
println!("children are: {:#?}", children);
142140
Ok(Arc::new(RecursiveQueryExec::new(
143141
self.name.clone(),
144142
children[0].clone(),

0 commit comments

Comments
 (0)