alamb opened a new issue, #8287: URL: https://github.com/apache/arrow-datafusion/issues/8287
### Is your feature request related to a problem or challenge? @tustvold mentioned to me that he can't debug sqllogictests using the debugger (I think he uses an IntelliJ derived one). I also can't do it under RustRover (also IntelliJ derived) I believe that is because when you tell IntelliJ to run `cargo test ...` it sticks a bunch of extra flags on it: A target defined as `test --test sqllogictests` Results in `cargo test` being run like this: ``` /Users/alamb/.cargo/bin/cargo test --color=always --test sqllogictests --no-fail-fast -- --format=json -Z unstable-options --show-output ``` ### Describe the solution you'd like I would like to be able to run sqllogictests as a `bin` target as well as a `test` target so that IDEs that make assumptions about what a test target does (aka what flags it accepts) can still be used For example, I would like to run something like this (to run the `metadata.slt` test): ``` cargo run -p datafusion-sqllogictest -- metadata ``` ### Describe alternatives you've considered We could potentially make the sqllogictest runner mimic the rust test runner more directly (e.g. accept the same flags, etc) ### Additional context _No response_ -- 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]
