alamb commented on pull request #8085: URL: https://github.com/apache/arrow/pull/8085#issuecomment-684762467
I have rebased and collapsed this together into a single commit as there were quite a few conflicts. Here are the commands I used (mostly for my own records if/when I have to do this again): ``` cd arrow/rust/datafusion mkdir src/logical_plan git mv src/logicalplan.rs src/logical_plan/mod.rs git mv src/execution/physical_plan src find . -name '*.rs' | xargs sed -i '' -e 's|execution::physical_plan|physical_plan|g' find . -name '*.rs' | xargs sed -i '' -e 's|logicalplan|logical_plan|g' # manually touch up datafusion/src/lib.rs, etc git commit -a -m 'ARROW-9821: [Rust][DataFusion] Make crate::logical_plan and crate::physical_plan modules' ``` ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected]
