Skip to content

Commit 8b4a646

Browse files
committed
wip: remove loggin
1 parent c5f9930 commit 8b4a646

File tree

4 files changed

+1
-18
lines changed

4 files changed

+1
-18
lines changed

datafusion/physical-expr/src/expressions/binary.rs

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -293,13 +293,6 @@ impl PhysicalExpr for BinaryExpr {
293293
let schema = batch.schema();
294294
let input_schema = schema.as_ref();
295295

296-
println!(
297-
"evaluate binary on batch left {:?}, right {:?}, operator {:?}",
298-
left_value, right_value, self.op
299-
);
300-
301-
print_batches(&[batch.clone()]).unwrap();
302-
303296
if self.is_datum_operator() {
304297
return match (&left_value, &right_value) {
305298
(ColumnarValue::Array(left), ColumnarValue::Array(right)) => {

datafusion/physical-plan/src/continuance.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ impl ExecutionPlan for ContinuanceExec {
135135
partition: usize,
136136
context: Arc<TaskContext>,
137137
) -> Result<SendableRecordBatchStream> {
138-
println!("calling execute on ContinuanceExec");
139138
// Continuance streams must be the plan base.
140139
if partition != 0 {
141140
return Err(DataFusionError::Internal(format!(

datafusion/physical-plan/src/recursive_query.rs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,6 @@ impl ExecutionPlan for RecursiveQueryExec {
150150
partition: usize,
151151
context: Arc<TaskContext>,
152152
) -> Result<SendableRecordBatchStream> {
153-
println!("recursive query exec execute");
154153
// All partitions must be coalesced before coming to RecursiveQueryExec.
155154
// TODO: we might be able to handle multiple partitions in the future.
156155
if partition != 0 {
@@ -307,10 +306,8 @@ impl RecursiveQueryStream {
307306
}
308307
}
309308

310-
println!("executing recursive term");
311-
312-
// let partition = self.task_context.set_and_increment_partition();
313309
let partition = 0;
310+
314311
self.recursive_stream = Some(
315312
self.recursive_term
316313
.execute(partition, self.task_context.clone())?,

datafusion/physical-plan/src/repartition/mod.rs

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -483,7 +483,6 @@ impl ExecutionPlan for RepartitionExec {
483483

484484
// if this is the first partition to be invoked then we need to set up initial state
485485
if state.channels.is_empty() {
486-
println!("channels are empty");
487486
let (txs, rxs) = if self.preserve_order {
488487
let (txs, rxs) =
489488
partition_aware_channels(num_input_partitions, num_output_partitions);
@@ -555,10 +554,6 @@ impl ExecutionPlan for RepartitionExec {
555554
partition
556555
);
557556

558-
println!("execute partition: {}", partition);
559-
println!("channel number: {}", state.channels.len());
560-
println!("preserve order {}", self.preserve_order);
561-
562557
// now return stream for the specified *output* partition which will
563558
// read from the channel
564559
let (_tx, mut rx, reservation) = state
@@ -601,7 +596,6 @@ impl ExecutionPlan for RepartitionExec {
601596
)
602597
} else {
603598
let input = rx.swap_remove(0);
604-
println!("input partition: {:?}", input);
605599
Ok(Box::pin(RepartitionStream {
606600
num_input_partitions,
607601
num_input_partitions_processed: 0,

0 commit comments

Comments
 (0)