Skip to content

Commit b2622a4

Browse files
committed
logs
1 parent d0d50f5 commit b2622a4

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

datafusion/physical-plan/src/continuance.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ impl ExecutionPlan for ContinuanceExec {
102102
}
103103

104104
fn output_partitioning(&self) -> Partitioning {
105-
Partitioning::UnknownPartitioning(1)
105+
Partitioning::UnknownPartitioning(0)
106106
}
107107

108108
fn maintains_input_order(&self) -> Vec<bool> {
@@ -135,6 +135,7 @@ impl ExecutionPlan for ContinuanceExec {
135135
partition: usize,
136136
context: Arc<TaskContext>,
137137
) -> Result<SendableRecordBatchStream> {
138+
println!("calling execute on ContinuanceExec");
138139
// Continuance streams must be the plan base.
139140
if partition != 0 {
140141
return Err(DataFusionError::Internal(format!(

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -554,6 +554,8 @@ impl ExecutionPlan for RepartitionExec {
554554
partition
555555
);
556556

557+
println!("execute partition: {}", partition);
558+
557559
// now return stream for the specified *output* partition which will
558560
// read from the channel
559561
let (_tx, mut rx, reservation) = state

0 commit comments

Comments
 (0)