We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 889d6e0 commit 285c360Copy full SHA for 285c360
datafusion/physical-plan/src/recursive_query.rs
@@ -150,6 +150,7 @@ impl ExecutionPlan for RecursiveQueryExec {
150
partition: usize,
151
context: Arc<TaskContext>,
152
) -> Result<SendableRecordBatchStream> {
153
+ println!("recursive query exec execute");
154
// All partitions must be coalesced before coming to RecursiveQueryExec.
155
// TODO: we might be able to handle multiple partitions in the future.
156
if partition != 0 {
@@ -306,6 +307,7 @@ impl RecursiveQueryStream {
306
307
}
308
309
310
+ println!("executing recursive term");
311
self.recursive_stream =
312
Some(self.recursive_term.execute(0, self.task_context.clone())?);
313
self.poll_next(cx)
0 commit comments