We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0b1a74 commit fdd6e7eCopy full SHA for fdd6e7e
datafusion/core/src/dataframe/mod.rs
@@ -215,6 +215,7 @@ impl DataFrame {
215
216
/// Consume the DataFrame and produce a physical plan
217
pub async fn create_physical_plan(self) -> Result<Arc<dyn ExecutionPlan>> {
218
+ println!("==> create_physical_plan {:?}", &self.plan);
219
self.session_state.create_physical_plan(&self.plan).await
220
}
221
@@ -1206,7 +1207,6 @@ impl DataFrame {
1206
1207
println!("==> dataframe.collect");
1208
let task_ctx = Arc::new(self.task_ctx());
1209
let plan = self.create_physical_plan().await?;
- println!("==> dataframe.collect plan: {:?}", plan);
1210
collect(plan, task_ctx).await
1211
1212
0 commit comments