alamb commented on code in PR #5432: URL: https://github.com/apache/arrow-datafusion/pull/5432#discussion_r1120854216
########## datafusion/core/src/execution/mod.rs: ########## @@ -41,12 +41,14 @@ //! pub mod context; -pub mod disk_manager; -pub mod memory_pool; // backwards compatibility pub use crate::datasource::file_format::options; -pub mod registry; pub mod runtime_env; +// backwards compatibility +pub use datafusion_execution::disk_manager; Review Comment: I moved three modules in this first PR -- runtime_env will take a little more work as will `context` so I plan to do them as smaller follow on PRs ########## dev/release/README.md: ########## @@ -310,6 +310,7 @@ dot -Tsvg dev/release/crate-deps.dot > dev/release/crate-deps.svg (cd datafusion/row && cargo publish) (cd datafusion/physical-expr && cargo publish) (cd datafusion/optimizer && cargo publish) +(cd datafusion/execution && cargo publish) Review Comment: I think this is the biggest change (a new crate to publish) -- cc @andygrove -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
