Skip to content

Commit 285c360

Browse files
committed
more logging
1 parent 889d6e0 commit 285c360

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

datafusion/physical-plan/src/recursive_query.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -150,6 +150,7 @@ impl ExecutionPlan for RecursiveQueryExec {
150150
partition: usize,
151151
context: Arc<TaskContext>,
152152
) -> Result<SendableRecordBatchStream> {
153+
println!("recursive query exec execute");
153154
// All partitions must be coalesced before coming to RecursiveQueryExec.
154155
// TODO: we might be able to handle multiple partitions in the future.
155156
if partition != 0 {
@@ -306,6 +307,7 @@ impl RecursiveQueryStream {
306307
}
307308
}
308309

310+
println!("executing recursive term");
309311
self.recursive_stream =
310312
Some(self.recursive_term.execute(0, self.task_context.clone())?);
311313
self.poll_next(cx)

0 commit comments

Comments
 (0)