File tree 2 files changed +4
-1
lines changed
datafusion/physical-plan/src 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -102,7 +102,7 @@ impl ExecutionPlan for ContinuanceExec {
102
102
}
103
103
104
104
fn output_partitioning ( & self ) -> Partitioning {
105
- Partitioning :: UnknownPartitioning ( 1 )
105
+ Partitioning :: UnknownPartitioning ( 0 )
106
106
}
107
107
108
108
fn maintains_input_order ( & self ) -> Vec < bool > {
@@ -135,6 +135,7 @@ impl ExecutionPlan for ContinuanceExec {
135
135
partition : usize ,
136
136
context : Arc < TaskContext > ,
137
137
) -> Result < SendableRecordBatchStream > {
138
+ println ! ( "calling execute on ContinuanceExec" ) ;
138
139
// Continuance streams must be the plan base.
139
140
if partition != 0 {
140
141
return Err ( DataFusionError :: Internal ( format ! (
Original file line number Diff line number Diff line change @@ -554,6 +554,8 @@ impl ExecutionPlan for RepartitionExec {
554
554
partition
555
555
) ;
556
556
557
+ println ! ( "execute partition: {}" , partition) ;
558
+
557
559
// now return stream for the specified *output* partition which will
558
560
// read from the channel
559
561
let ( _tx, mut rx, reservation) = state
You can’t perform that action at this time.
0 commit comments