Dandandan opened a new issue #218: URL: https://github.com/apache/arrow-datafusion/issues/218
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.** The Datafusion cli/repl functionality now lives inside the DataFusion tree. This has two main implications: * Building DataFusion fetches extra dependencies (`clap` and transient dependencies) unneeded for the rest of DataFusion, slowing the development cycle down a bit. * Installing the binary using cargo is a bit more cumbersome, `cargo install datafusion --bin datafusion-cli --release` **Describe the solution you'd like** Move the `datafusion-cli` to the root dir. Publish the crate to `crates.io` as `datafusion-cli`. The tool now can be installed using `cargo install datafusion-cli --release` and now lives outside of the DataFusion crate. **Describe alternatives you've considered** Keep structure as is. **Additional context** -- 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]
